mirror of
https://github.com/MrUnknownDE/VRCX.git
synced 2026-05-07 06:56:04 +02:00
detailed error message
This commit is contained in:
+2
-2
@@ -426,10 +426,10 @@ CefSharp.BindObjectAsync(
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
if (error !== undefined) {
|
if (error !== undefined) {
|
||||||
text.push(error);
|
text.push(JSON.stringify(error));
|
||||||
}
|
}
|
||||||
if (extra !== undefined) {
|
if (extra !== undefined) {
|
||||||
text.push(extra);
|
text.push(JSON.stringify(extra));
|
||||||
}
|
}
|
||||||
text = text.map((s) => escapeTag(s)).join('<br>');
|
text = text.map((s) => escapeTag(s)).join('<br>');
|
||||||
if (text.length) {
|
if (text.length) {
|
||||||
|
|||||||
+1
-1
@@ -362,7 +362,7 @@ CefSharp.BindObjectAsync(
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
if (error !== undefined) {
|
if (error !== undefined) {
|
||||||
text.push(error);
|
text.push(JSON.stringify(error));
|
||||||
}
|
}
|
||||||
text = text.map((s) => escapeTag(s)).join('<br>');
|
text = text.map((s) => escapeTag(s)).join('<br>');
|
||||||
if (text.length) {
|
if (text.length) {
|
||||||
|
|||||||
Reference in New Issue
Block a user