aboutsummaryrefslogtreecommitdiff
path: root/src/github/daneren2005
diff options
context:
space:
mode:
Diffstat (limited to 'src/github/daneren2005')
-rw-r--r--src/github/daneren2005/dsub/view/SongView.java2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/github/daneren2005/dsub/view/SongView.java b/src/github/daneren2005/dsub/view/SongView.java
index f76f4f2a..5a334cd0 100644
--- a/src/github/daneren2005/dsub/view/SongView.java
+++ b/src/github/daneren2005/dsub/view/SongView.java
@@ -166,7 +166,7 @@ public class SongView extends UpdateView implements Checkable {
isStarred = song.isStarred();
// Check if needs to load metadata: check against all fields that we know are null in offline mode
- if(song.getBitrate() == null && song.getDuration() == null && song.getDiscNumber() == null && isWorkDone) {
+ if(song.getBitRate() == null && song.getDuration() == null && song.getDiscNumber() == null && isWorkDone) {
song.loadMetadata(downloadFile.getCompleteFile());
}
}