Captain Ezio commited on
Commit
545a638
·
1 Parent(s): b1f7b16

tried to fix

Browse files
Files changed (1) hide show
  1. Powers/utils/custom_filters.py +3 -3
Powers/utils/custom_filters.py CHANGED
@@ -27,10 +27,10 @@ def command(
27
  if not m:
28
  return
29
 
30
- if m["edit_date"]:
31
  return # reaction
32
 
33
- if m["chat"] and m["chat"]["type"] == "channel":
34
  return
35
 
36
  if not m.from_user:
@@ -75,7 +75,7 @@ def command(
75
  except ValueError:
76
  # i.e. PM
77
  user_status = "creator"
78
- ddb = Disabling(m["chat"]["id"])
79
  if str(matches.group(1)) in ddb.get_disabled() and user_status not in (
80
  "creator",
81
  "administrator",
 
27
  if not m:
28
  return
29
 
30
+ if m.get("edit_date"):
31
  return # reaction
32
 
33
+ if m.get("chat") and m.get("chat").get("type") == "channel":
34
  return
35
 
36
  if not m.from_user:
 
75
  except ValueError:
76
  # i.e. PM
77
  user_status = "creator"
78
+ ddb = Disabling(m.get("chat").get("id"))
79
  if str(matches.group(1)) in ddb.get_disabled() and user_status not in (
80
  "creator",
81
  "administrator",