FSK "Umrechner"

This commit is contained in:
2016-02-26 22:45:34 +01:00
parent c557d11da2
commit 1924eddeaa
2 changed files with 19 additions and 4 deletions

View File

@ -68,7 +68,7 @@ local data = json:decode(table.concat(response_body))._children[1]
end
if data.contentRating then
fsk = '\nAltersfreigabe: '..data.contentRating
fsk = '\nAltersfreigabe: '..gerRating(data.contentRating)
else
fsk = ''
end
@ -111,9 +111,9 @@ local function run(msg, matches)
end
return {
description = "",
usage = "",
patterns = {"^/plex (.*)$"},
description = "Suche für Plex Media Server",
usage = "/plex [BEGRIFF]",
patterns = {"^/[Pp][Ll][Ee][Xx] (.*)$"},
run = run
}