aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--discord/channel.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/discord/channel.py b/discord/channel.py
index 41445a12..983b4fb9 100644
--- a/discord/channel.py
+++ b/discord/channel.py
@@ -111,7 +111,8 @@ class Channel(EqualityComparable):
override.permissions.handle_overwrite(allowed, denied)
self.changed_roles.append(override)
- def is_default_channel(self):
+ @property
+ def is_default(self):
"""bool : Indicates if this is the default channel for the :class:`Server` it belongs to."""
return self.server.id == self.id