Merge pull request #629 from sdgsnehal/bugfix/instagram_video_limit

increase maximum video length for instagram to1 80
This commit is contained in:
egelhaus 2025-02-27 07:11:03 +01:00 committed by GitHub
commit 6f337ad024
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 2 additions and 2 deletions

View File

@ -80,8 +80,8 @@ export default withProvider<InstagramDto>(
return 'Instagram stories should be maximum 60 seconds';
}
if (video > 90 && settings.post_type === 'post') {
return 'Instagram reel should be maximum 90 seconds';
if (video > 180 && settings.post_type === 'post') {
return 'Instagram reel should be maximum 180 seconds';
}
}