diff --git a/beetsplug/web/__init__.py b/beetsplug/web/__init__.py index f53fb3a95..21ff5d94e 100644 --- a/beetsplug/web/__init__.py +++ b/beetsplug/web/__init__.py @@ -169,7 +169,7 @@ class IdListConverter(BaseConverter): return ids def to_url(self, value): - return ','.join(value) + return ','.join(str(v) for v in value) class QueryConverter(PathConverter):