Android: Fix WAD import crashing
progressMessage can have the invalid value of 0. That progressMessage was being used for the thread name was a typo anyway – it's supposed to use progressTitle.
This commit is contained in:
parent
fd4efd3787
commit
d42cec0d19
|
@ -305,7 +305,7 @@ public final class MainPresenter
|
|||
builder.show();
|
||||
}
|
||||
});
|
||||
}, mContext.getResources().getString(progressMessage)).start();
|
||||
}, mContext.getResources().getString(progressTitle)).start();
|
||||
}
|
||||
|
||||
public static void skipRescanningLibrary()
|
||||
|
|
Loading…
Reference in New Issue