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:
JosJuice 2021-06-07 23:09:29 +02:00
parent fd4efd3787
commit d42cec0d19

View File

@ -305,7 +305,7 @@ public final class MainPresenter
builder.show();
}
});
}, mContext.getResources().getString(progressMessage)).start();
}, mContext.getResources().getString(progressTitle)).start();
}
public static void skipRescanningLibrary()