From e116690640d0f4b03c1f214949c77aa65ba70fda Mon Sep 17 00:00:00 2001
From: krateng <git.noreply@krateng.ch>
Date: Sat, 30 Apr 2022 20:19:45 +0200
Subject: [PATCH] Fixed leftover whitespaces when parsing titles

---
 maloja/cleanup.py | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/maloja/cleanup.py b/maloja/cleanup.py
index 3e9c5b5..c552b35 100644
--- a/maloja/cleanup.py
+++ b/maloja/cleanup.py
@@ -55,7 +55,7 @@ class CleanerAgent:
 		artists = list(set(artists))
 		artists.sort()
 
-		return (artists,title)
+		return (artists,title.strip())
 
 	def removespecial(self,s):
 		if isinstance(s,list):