Skip to content

Commit

Permalink
Fix local search's issue with bad escapes causing non-local playback (#…
Browse files Browse the repository at this point in the history
  • Loading branch information
Jackenmen committed Aug 10, 2023
1 parent a06a704 commit 3ac2512
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion redbot/cogs/audio/core/utilities/local_tracks.py
Original file line number Diff line number Diff line change
Expand Up @@ -122,7 +122,7 @@ async def _build_local_search_list(
if percent_match > 85:
search_list.extend(
[
discord.utils.escape_markdown(i.to_string_user())
i.to_string_user()
for i in to_search
if i.local_track_path is not None
and i.local_track_path.name == track_match
Expand Down

0 comments on commit 3ac2512

Please sign in to comment.