This commit is contained in:
Austin Huang 2020-11-30 12:46:44 -05:00
parent 38d0bd56f8
commit 0dd5a77295
No known key found for this signature in database
GPG Key ID: 84C23AA04587A91F
2 changed files with 3 additions and 3 deletions

View File

@ -10,8 +10,8 @@ android {
minSdkVersion 21
targetSdkVersion 29
versionCode 53
versionName '19.0.1'
versionCode 54
versionName '19.0.2'
multiDexEnabled true

View File

@ -77,7 +77,7 @@ public final class DownloadUtils {
File dir = getDownloadDir();
if (Utils.settingsHelper.getBoolean(Constants.DOWNLOAD_USER_FOLDER) && !TextUtils.isEmpty(username)) {
final String finaleUsername = username.startsWith("@") ? username : "@" + username;
final String finaleUsername = username.startsWith("@") ? username.substring(1) : username;
dir = new File(dir, finaleUsername);
}