Limit reported error length

This commit is contained in:
M66B
2024-01-28 09:29:40 +01:00
parent f8f9d50590
commit 5ff0ca0267
4 changed files with 12 additions and 5 deletions

View File

@@ -1867,7 +1867,7 @@ public class Log {
if (!TextUtils.isEmpty(message))
uri = uri
.buildUpon()
.appendQueryParameter("message", "Unexpected: " + message)
.appendQueryParameter("message", Helper.limit(message, 384))
.build();
Helper.view(context, uri, true);
}