mirror of
https://github.com/KokaKiwi/BarInsta
synced 2024-11-22 14:47:29 +00:00
Fix Codacy Issues
This commit is contained in:
parent
2a1473084e
commit
f1df75860b
@ -142,7 +142,7 @@ public final class DownloadUtils {
|
|||||||
final String sliderPostfix,
|
final String sliderPostfix,
|
||||||
final String displayUrl,
|
final String displayUrl,
|
||||||
final String username) {
|
final String username) {
|
||||||
String usernamePrepend = (username.equals("")) ? "" : "@" + username + "_";
|
final String usernamePrepend = "".equals(username) ? "" : "@" + username + "_";
|
||||||
final String fileName = usernamePrepend + postId + sliderPostfix + getFileExtensionFromUrl(displayUrl);
|
final String fileName = usernamePrepend + postId + sliderPostfix + getFileExtensionFromUrl(displayUrl);
|
||||||
return new File(finalDir, fileName);
|
return new File(finalDir, fileName);
|
||||||
}
|
}
|
||||||
@ -212,8 +212,8 @@ public final class DownloadUtils {
|
|||||||
username = user.getUsername();
|
username = user.getUsername();
|
||||||
}
|
}
|
||||||
final File downloadDir = getDownloadDir(null, "@" + username, true);
|
final File downloadDir = getDownloadDir(null, "@" + username, true);
|
||||||
String usernamePrepend = (Utils.settingsHelper.getBoolean(Constants.DOWNLOAD_PREPEND_USER_NAME)
|
final String usernamePrepend = Utils.settingsHelper.getBoolean(Constants.DOWNLOAD_PREPEND_USER_NAME)
|
||||||
&& user != null) ? username : "";
|
&& user != null ? username : "";
|
||||||
switch (media.getMediaType()) {
|
switch (media.getMediaType()) {
|
||||||
case MEDIA_TYPE_IMAGE:
|
case MEDIA_TYPE_IMAGE:
|
||||||
case MEDIA_TYPE_VIDEO: {
|
case MEDIA_TYPE_VIDEO: {
|
||||||
@ -339,7 +339,7 @@ public final class DownloadUtils {
|
|||||||
}
|
}
|
||||||
final Media child = sliderItems.get(i);
|
final Media child = sliderItems.get(i);
|
||||||
final String url = getUrlOfType(child);
|
final String url = getUrlOfType(child);
|
||||||
String usernamePrepend = (Utils.settingsHelper.getBoolean(Constants.DOWNLOAD_PREPEND_USER_NAME) && mediaUser != null) ? mediaUser.getUsername() : "";
|
final String usernamePrepend = Utils.settingsHelper.getBoolean(Constants.DOWNLOAD_PREPEND_USER_NAME) && mediaUser != null ? mediaUser.getUsername() : "";
|
||||||
final File file = getDownloadChildSaveFile(downloadDir, media.getCode(), i + 1, url, usernamePrepend);
|
final File file = getDownloadChildSaveFile(downloadDir, media.getCode(), i + 1, url, usernamePrepend);
|
||||||
map.put(url, file.getAbsolutePath());
|
map.put(url, file.getAbsolutePath());
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user