File tree 1 file changed +3
-3
lines changed
1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -282,10 +282,10 @@ def servers(self):
282
282
else :
283
283
self .c .fail (f"Failed to send message in Channel: { self .c .clnt .maincol } #group-chats" )
284
284
285
- dm_messages = ["**DM History**\n Format: `user#tag | user_id | last_dm`\n (sorted most recent at top)\n \n " ]
285
+ dm_messages = ["**DM History**\n Format: `user#tag | user ping | last_dm`\n (sorted most recent at top)\n \n " ]
286
286
for dm in self .restore_data ['dm-history' ]:
287
287
tmstmp = f"<t:{ dm ['timestamp' ]} >" if dm ['timestamp' ] != 0 else "Never DMed"
288
- dat = f"{ dm ['user' ]} | ` { dm ['user_id' ]} ` | { tmstmp } \n "
288
+ dat = f"{ dm ['user' ]} | <@ { dm ['user_id' ]} > | { tmstmp } \n "
289
289
if len (dm_messages [- 1 ]) + len (dat ) > 2000 :
290
290
dm_messages .append (dat )
291
291
else :
@@ -436,4 +436,4 @@ def folders(self):
436
436
if r .status_code == 200 :
437
437
self .c .success (f"Restored Guild Folders" )
438
438
else :
439
- self .c .fail (f"Couldn't Restore Guild Folders: { self .c .clnt .maincol } { r .status_code } " )
439
+ self .c .fail (f"Couldn't Restore Guild Folders: { self .c .clnt .maincol } { r .status_code } " )
You can’t perform that action at this time.
0 commit comments