mirror of
https://github.com/M66B/FairEmail.git
synced 2026-04-01 14:46:31 +02:00
Limit reported error length
This commit is contained in:
@@ -337,7 +337,8 @@ public class ActivityMain extends ActivityBase implements FragmentManager.OnBack
|
||||
public void onClick(DialogInterface dialog, int which) {
|
||||
Uri uri = Helper.getSupportUri(ActivityMain.this, "Main:error")
|
||||
.buildUpon()
|
||||
.appendQueryParameter("message", Log.formatThrowable(ex, false))
|
||||
.appendQueryParameter("message",
|
||||
Helper.limit(Log.formatThrowable(ex, false), 384))
|
||||
.build();
|
||||
Helper.view(ActivityMain.this, uri, true);
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user