diff options
-rw-r--r-- | src/github/daneren2005/dsub/service/CachedMusicService.java | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/github/daneren2005/dsub/service/CachedMusicService.java b/src/github/daneren2005/dsub/service/CachedMusicService.java index 7253788a..1e553ca2 100644 --- a/src/github/daneren2005/dsub/service/CachedMusicService.java +++ b/src/github/daneren2005/dsub/service/CachedMusicService.java @@ -405,9 +405,9 @@ public class CachedMusicService implements MusicService { }.execute(); } else { // If parent is null, then this is a root level album - Artist artist = new Artist(); + final Artist artist = new Artist(); artist.setId(album.getId()); - artist.setName(album.getTitle(); + artist.setName(album.getTitle()); new IndexesUpdater(context, isTagBrowsing ? "artists" : "indexes") { private boolean changed = false; |