Skip to content

Commit

Permalink
Merge pull request breakdowns#371 from junedkh/master
Browse files Browse the repository at this point in the history
Fixed Clone Size
  • Loading branch information
anasty17 authored Aug 29, 2021
2 parents 4ed0c36 + c10c6d5 commit 7fb8d97
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 7fb8d97

Please sign in to comment.