Rename generatingPlaylistProgress to progress

Rename generatingPlaylistProgress to progress, since it is used for
merging and downloading, too
This commit is contained in:
0xboobface 2018-08-28 17:12:46 +02:00
parent 89a1737536
commit 1383199532
1 changed files with 3 additions and 3 deletions

View File

@ -12,7 +12,7 @@ public class Recording {
private String path; private String path;
private boolean hasPlaylist; private boolean hasPlaylist;
private STATUS status; private STATUS status;
private int generatingPlaylistProgress = -1; private int progress = -1;
private long sizeInByte; private long sizeInByte;
public static enum STATUS { public static enum STATUS {
@ -58,11 +58,11 @@ public class Recording {
} }
public int getProgress() { public int getProgress() {
return this.generatingPlaylistProgress; return this.progress;
} }
public void setProgress(int progress) { public void setProgress(int progress) {
this.generatingPlaylistProgress = progress; this.progress = progress;
} }
public String getPath() { public String getPath() {