Skip to content

Commit

Permalink
fix for online audio sources
Browse files Browse the repository at this point in the history
  • Loading branch information
tatsumoto-ren committed Jul 24, 2024
1 parent 88aeb4d commit ecd298e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion japanese/audio_manager/audio_source.py
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ def join(self, *args) -> Union[str, bytes]:
return os.path.join(*args)
else:
# URLs are always joined with '/'.
return "/".join(*args)
return "/".join(args)

@property
def is_local(self) -> bool:
Expand Down

0 comments on commit ecd298e

Please sign in to comment.