Favorites action buttons clean up and tooltips

This commit is contained in:
Natsumi
2025-11-14 23:10:55 +11:00
parent c11a79f76f
commit a122fd5d68
7 changed files with 92 additions and 30 deletions

View File

@@ -525,7 +525,7 @@ namespace VRCX
var message = webException.Message;
if (webException.InnerException != null)
message += $" | Inner Exception: {webException.InnerException.Message}";
message += $" | Inner Exception: {webException.InnerException}";
return new Tuple<int, string>(
-1,
message
@@ -535,7 +535,7 @@ namespace VRCX
{
var message = e.Message;
if (e.InnerException != null)
message += $" | Inner Exception: {e.InnerException.Message}";
message += $" | Inner Exception: {e.InnerException}";
return new Tuple<int, string>(
-1,
message