fix: soft-fail on unknown service type

This commit is contained in:
relikd
2025-12-03 02:26:09 +01:00
parent 5c052d0627
commit 421824f9fd

View File

@@ -280,7 +280,8 @@ class Service(Queryable):
elif self.service == 'Yahoo':
typ = 'ymsgr'
else:
raise NotImplementedError('Unknown Service: ' + self.service)
typ = 'unknown'
print(f'Unknown Service: "{self.service}"', file=sys.stderr)
# Dear Apple, why do you do such weird shit, URL encoding? bah!
# Even worse, you break it so that reimport fails.