mirror of
https://github.com/KokaKiwi/BarInsta
synced 2025-11-22 22:06:30 +00:00
Fix Codacy Issues
This commit is contained in:
parent
f1df75860b
commit
2d2ad6130b
1 changed files with 2 additions and 2 deletions
|
|
@ -277,8 +277,8 @@ public final class DownloadUtils {
|
|||
: storyModel.getStoryUrl();
|
||||
final String baseFileName = storyModel.getStoryMediaId() + "_"
|
||||
+ storyModel.getTimestamp() + DownloadUtils.getFileExtensionFromUrl(url);
|
||||
String usernamePrepend = (Utils.settingsHelper.getBoolean(Constants.DOWNLOAD_PREPEND_USER_NAME)
|
||||
&& storyModel.getUsername() != null) ? "@" + storyModel.getUsername() + "_" : "";
|
||||
final String usernamePrepend = Utils.settingsHelper.getBoolean(Constants.DOWNLOAD_PREPEND_USER_NAME)
|
||||
&& storyModel.getUsername() != null ? "@" + storyModel.getUsername() + "_" : "";
|
||||
final File saveFile = new File(downloadDir,
|
||||
usernamePrepend + baseFileName);
|
||||
download(context, url, saveFile.getAbsolutePath());
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue