Browse Source

Fix title of retroarch import page

Colin Powell 1 year ago
parent
commit
a3bf9b0081
1 changed files with 2 additions and 0 deletions
  1. 2 0
      vrobbler/apps/scrobbles/views.py

+ 2 - 0
vrobbler/apps/scrobbles/views.py

@@ -189,6 +189,8 @@ class BaseScrobbleImportDetailView(DetailView):
             title = "Audioscrobbler TSV Import"
         if self.model == LastFmImport:
             title = "LastFM Import"
+        if self.model == RetroarchImport:
+            title = "Retroarch Import"
         context_data["title"] = title
         return context_data