diff --git a/discordbot.py b/discordbot.py index cfaa072c..32a8c289 100644 --- a/discordbot.py +++ b/discordbot.py @@ -33,7 +33,7 @@ finally: # Init the discord bot client = discord.Client() -discord.opus.load_opus("libopus-0.dll") +discord.opus.load_opus("/usr/lib/x86_64-linux-gnu/libopus.so") voice_client = None voice_player = None voice_queue = [] @@ -58,7 +58,7 @@ class Video: self.enqueued = enqueued self.channel = channel return self - + def create_embed(self): embed = discord.Embed(type="rich", title=self.info.get("title"), @@ -382,4 +382,4 @@ def process(users_connection=None): if __name__ == "__main__": - process() \ No newline at end of file + process() diff --git a/webserver.py b/webserver.py index fd432b5b..cf49b0bd 100644 --- a/webserver.py +++ b/webserver.py @@ -38,6 +38,6 @@ def page_challenge_one(): if __name__ == "__main__": try: - app.run(host="0.0.0.0", port=1234, debug=True) + app.run(host="0.0.0.0", port=1234) except KeyboardInterrupt: - pass \ No newline at end of file + pass