mirror of
https://github.com/MrUnknownDE/VRCX.git
synced 2026-04-19 23:03:51 +02:00
Favorites action buttons clean up and tooltips
This commit is contained in:
@@ -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
|
||||
|
||||
Reference in New Issue
Block a user