mirror of
https://github.com/pyrogram/pyrogram
synced 2025-09-02 23:35:17 +00:00
Merge branch 'develop' into asyncio
This commit is contained in:
@@ -1087,14 +1087,15 @@ class Client(Methods, BaseClient):
|
|||||||
"exclude": section.get("exclude") or None
|
"exclude": section.get("exclude") or None
|
||||||
}
|
}
|
||||||
except KeyError:
|
except KeyError:
|
||||||
pass
|
self.plugins = {}
|
||||||
|
|
||||||
for option in ["include", "exclude"]:
|
if self.plugins:
|
||||||
if self.plugins[option] is not None:
|
for option in ["include", "exclude"]:
|
||||||
self.plugins[option] = [
|
if self.plugins[option] is not None:
|
||||||
(i.split()[0], i.split()[1:] or None)
|
self.plugins[option] = [
|
||||||
for i in self.plugins[option].strip().split("\n")
|
(i.split()[0], i.split()[1:] or None)
|
||||||
]
|
for i in self.plugins[option].strip().split("\n")
|
||||||
|
]
|
||||||
|
|
||||||
async def load_session(self):
|
async def load_session(self):
|
||||||
try:
|
try:
|
||||||
|
Reference in New Issue
Block a user