split metadata into lines (if more than one was received)

This commit is contained in:
Jakob Ketterl 2021-08-06 20:01:35 +02:00
parent 175e140f86
commit 307e944911

View File

@ -155,7 +155,8 @@ class MetaParser(Parser):
"NXDN": RadioIDEnricher("nxdn", self),
}
def parse(self, meta):
def parse(self, raw: str):
for meta in raw.split("\n"):
fields = meta.split(";")
meta = {v[0]: ":".join(v[1:]) for v in map(lambda x: x.split(":"), fields) if v[0] != ""}