Skip to content

Commit

Permalink
hotfix crash when info was shown
Browse files Browse the repository at this point in the history
missing leftover of previous commit
  • Loading branch information
edeso committed Feb 4, 2024
1 parent cf26af9 commit cfa336d
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -600,7 +600,7 @@ public void run() {
if (ignoredKeys.contains(key))
continue;
metaText += (metaText.isEmpty() ? "" : "\n") +
key + ": " + entry.getValue();
key + ": " + String.valueOf(entry.getValue());
}
}
final String text = metaText;
Expand Down

0 comments on commit cfa336d

Please sign in to comment.