Skip to content

Commit

Permalink
Hotfix for tag list not working
Browse files Browse the repository at this point in the history
It worked in DEBUG...
  • Loading branch information
RuiNtD committed Mar 25, 2024
1 parent 179c6d5 commit 5d9c816
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion RichPresenceMod.cs
Original file line number Diff line number Diff line change
Expand Up @@ -208,7 +208,7 @@ private string FormatTags(
var tags = api.ResolveAllTags();
nulls = 0;

Dictionary<string, Dictionary<string, string>> groups = new();
Dictionary<string, Dictionary<string, string>> groups = new() { [""] = new() };
foreach (var tag in tags)
{
string owner = api.GetTagOwner(tag.Key) ?? "";
Expand Down
2 changes: 1 addition & 1 deletion manifest.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"Name": "Rich Presence",
"Author": "RuiNtD",
"Version": "3.0.0",
"Version": "3.0.1",
"Description": "Shows your in-game state on your Discord profile.",
"UniqueID": "RuiNtD.RichPresence",
"EntryDll": "SVRichPresence.dll",
Expand Down

0 comments on commit 5d9c816

Please sign in to comment.