slight change in /retag (" - " instead of "-" is the artist/title split)

neu
Tomáš Mládek 2019-05-29 15:58:16 +02:00
parent 558e723948
commit ae09a1d981
1 changed files with 2 additions and 3 deletions

View File

@ -460,12 +460,11 @@ class DelojzaBot:
update.message.reply_text(tmp_reply)
def tg_retag(self, _, update):
message_is_sensible = update.message.text.count("-") == 1
if self.last_downloaded.get(update.message.chat.id) is not None and message_is_sensible:
if self.last_downloaded.get(update.message.chat.id) is not None and " - " in update.message.text:
files, hashtags, tumblr_ids = self.last_downloaded[update.message.chat.id]
mp3s = [filename for filename in files if filename.endswith("mp3")]
if len(mp3s) > 0:
tagline = re.sub(r'^/[\w]+', '', update.message.text).split("-")
tagline = re.sub(r'^/[\w]+', '', update.message.text).split(" - ")
artist = tagline[0].strip()
title = tagline[1].strip()
for mp3 in mp3s: