Skip to content
This repository has been archived by the owner on May 22, 2019. It is now read-only.

Commit

Permalink
Фикс пути загрузки файла
Browse files Browse the repository at this point in the history
  • Loading branch information
SerVB committed Aug 17, 2017
1 parent 7998770 commit 1f3052f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/servb/record/core/downloader/Downloader.java
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ public void run() {
* @param genreId Номер жанра для загрузки.
*/
public static void vDownloadFullList(final int genreId) {
final String saveFolder = ui.jTextFieldSavePath.getText() + START_TIME + alGenres.get(genreId).getName();
final String saveFolder = ui.jTextFieldSavePath.getText() + START_TIME + alGenres.get(genreId).getName() + File.separator;
File fPathToSave = new File(saveFolder);
fPathToSave.mkdirs();

Expand Down

0 comments on commit 1f3052f

Please sign in to comment.