Skip to content

Commit ecd298e

Browse files
committed
fix for online audio sources
1 parent 88aeb4d commit ecd298e

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

japanese/audio_manager/audio_source.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,7 @@ def join(self, *args) -> Union[str, bytes]:
5858
return os.path.join(*args)
5959
else:
6060
# URLs are always joined with '/'.
61-
return "/".join(*args)
61+
return "/".join(args)
6262

6363
@property
6464
def is_local(self) -> bool:

0 commit comments

Comments
 (0)