Add 'url', 'link' and 'filename' EQL nouns.

This commit is contained in:
auouymous 2023-01-25 16:30:47 -07:00
parent 92c741b02f
commit eb02ddd9d5
1 changed files with 6 additions and 0 deletions

View File

@ -121,6 +121,12 @@ class Matcher(object):
return episode.channel.title
elif k == 'section':
return episode.channel.section
elif k == 'url':
return episode.url
elif k == 'link':
return episode.link
elif k == 'filename':
return episode.download_filename
raise KeyError(k)