Merge pull request #629 from sdgsnehal/bugfix/instagram_video_limit
increase maximum video length for instagram to1 80
This commit is contained in:
commit
6f337ad024
|
|
@ -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';
|
||||
}
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Reference in New Issue