Small fixes V1.0.3

This commit is contained in:
Patryk Mazur
2026-04-22 19:51:38 +02:00
parent 36630a5f0f
commit 03b90d1316
2 changed files with 2 additions and 2 deletions
+1 -1
View File
@@ -1,6 +1,6 @@
import discord
__version__ = '1.0.1'
__version__ = '1.0.3'
__author__ = 'Kartoniarz'
+1 -1
View File
@@ -40,7 +40,7 @@ def download_video(yt_url: str) -> dict:
if duration > MAX_DUR:
return {
'status': 'error',
'message': f'Wideo jest za długie ({duration // 60}m {duration % 60}s). Maksymalnie 10 minut.'
'message': f'Wideo jest za długie ({duration // 60}m {duration % 60}s). Maksymalnie {MAX_DUR // 60}m {MAX_DUR % 60}s.'
}
rotate_downloads(DOWNLOADS)