From a3bf9b0081f0c2c019d7c3ece3a5781ced43e121 Mon Sep 17 00:00:00 2001 From: Colin Powell Date: Wed, 31 May 2023 20:19:09 -0400 Subject: [PATCH] Fix title of retroarch import page --- vrobbler/apps/scrobbles/views.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/vrobbler/apps/scrobbles/views.py b/vrobbler/apps/scrobbles/views.py index 94673f4..45c3801 100644 --- a/vrobbler/apps/scrobbles/views.py +++ b/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