Skip to content

Commit

Permalink
[Audio] Change Lavalink.jar version checking (#2785)
Browse files Browse the repository at this point in the history
  • Loading branch information
aikaterna authored and Tobotimus committed Jun 23, 2019
1 parent 1804314 commit 065396a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion redbot/cogs/audio/manager.py
Expand Up @@ -261,7 +261,7 @@ async def _is_up_to_date(cls):
# Output is unexpected, suspect corrupted jarfile
return False
build = int(match["build"])
cls._up_to_date = build == JAR_BUILD
cls._up_to_date = build >= JAR_BUILD
return cls._up_to_date

@classmethod
Expand Down

0 comments on commit 065396a

Please sign in to comment.