mirror of
https://github.com/M66B/FairEmail.git
synced 2026-04-01 22:56:33 +02:00
Show waiting for server earlier
This commit is contained in:
@@ -1677,7 +1677,7 @@ public class Helper {
|
||||
return layout.getOffsetForHorizontal(line, x);
|
||||
}
|
||||
|
||||
static String getRequestKey(Fragment fragment) {
|
||||
static String getWho(Fragment fragment) {
|
||||
String who;
|
||||
try {
|
||||
Class<?> cls = fragment.getClass();
|
||||
@@ -1685,16 +1685,18 @@ public class Helper {
|
||||
cls = cls.getSuperclass();
|
||||
Field f = cls.getDeclaredField("mWho");
|
||||
f.setAccessible(true);
|
||||
who = (String) f.get(fragment);
|
||||
return (String) f.get(fragment);
|
||||
} catch (Throwable ex) {
|
||||
Log.w(ex);
|
||||
String we = fragment.toString();
|
||||
int pa = we.indexOf('(');
|
||||
int sp = we.indexOf(' ', pa);
|
||||
who = we.substring(pa + 1, sp);
|
||||
return we.substring(pa + 1, sp);
|
||||
}
|
||||
}
|
||||
|
||||
return fragment.getClass().getName() + ":result:" + who;
|
||||
static String getRequestKey(Fragment fragment) {
|
||||
return fragment.getClass().getName() + ":result:" + getWho(fragment);
|
||||
}
|
||||
|
||||
static void clearViews(Object instance) {
|
||||
|
||||
Reference in New Issue
Block a user