Skip to content

Commit

Permalink
Fixed Clone Size
Browse files Browse the repository at this point in the history
Fixed Clone Size is Fixed now
  • Loading branch information
junedkh committed Aug 29, 2021
1 parent 4ed0c36 commit c10c6d5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion bot/modules/clone.py
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ def cloneNode(update, context):
if CLONE_LIMIT is not None:
result = check_limit(size, CLONE_LIMIT)
if result:
msg2 = f'Failed, Clone limit is {CLONE_LIMIT}.\nYour File/Folder size is {get_readable_file_size(clonesize)}.'
msg2 = f'Failed, Clone limit is {CLONE_LIMIT}.\nYour File/Folder size is {get_readable_file_size(size)}.'
sendMessage(msg2, context.bot, update)
return
if files < 15:
Expand Down

0 comments on commit c10c6d5

Please sign in to comment.