(20250116) Fixed auth-token bug for mail controllers.

This commit is contained in:
2025-01-16 17:08:15 +05:30
parent a5f88f1ff4
commit c78ab00ca7
3 changed files with 18 additions and 15 deletions
+1 -1
View File
@@ -135,7 +135,7 @@ class MailController(CoreMessageController, ABC):
# Prepare the combined base filter:
sms_filter = {}
for k, v in (base_filter or {}).items(): sms_filter[k] = v
sms_filter["serviceType"] = "sms"
sms_filter["serviceType"] = "email"
# Invoke the parent's constructor:
CoreMessageController.__init__(