Skip to content
This repository has been archived by the owner on Jul 5, 2024. It is now read-only.

Commit

Permalink
Merge pull request #6 from GOATS2K/dev
Browse files Browse the repository at this point in the history
0.2.1: emergency bugfix
  • Loading branch information
GOATS2K committed Jan 22, 2021
2 parents ce5b2fb + a279085 commit 4534def
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion overpass/auth.py
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
def verify():
""" Verifies if user exists in the Discord guild """
guilds = discord.fetch_guilds()
user_is_in_guild = next((i for i in guilds if i.id == DISCORD_GUILD_ID), False)
user_is_in_guild = next((i for i in guilds if i.id == int(DISCORD_GUILD_ID)), False)
if user_is_in_guild:
return True

Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[tool.poetry]
name = "overpass"
version = "0.2.0"
version = "0.2.1"
description = "A self-hosted streaming platform with Discord authentication, auto-recording and more!"
authors = ["GOATS2K <[email protected]>"]

Expand Down

0 comments on commit 4534def

Please sign in to comment.