Skip to content

Commit

Permalink
Social: Fix the Instagram video max length (#39930)
Browse files Browse the repository at this point in the history
As reported in this forum thread https://wordpress.org/support/topic/length-of-instagram-business-reels/
the validation of Instagram videos is incorrect. It is set to 90, rather
than 900, so the max video length is 1.5 minutes rather than 15 minutes.

This change updates the value.
  • Loading branch information
pablinos authored Oct 29, 2024
1 parent 5315079 commit 89c8342
Show file tree
Hide file tree
Showing 4 changed files with 13 additions and 1 deletion.
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
Significance: patch
Type: fixed

Social: Fixed the Instagram max video length
Original file line number Diff line number Diff line change
Expand Up @@ -148,7 +148,7 @@ export const RESTRICTIONS = {
},
},
video: {
maxLength: 90,
maxLength: 900,
minLength: 3,
maxSize: 1000,
maxWidth: 1920,
Expand Down
4 changes: 4 additions & 0 deletions projects/plugins/jetpack/changelog/fix-instagram-video-length
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
Significance: patch
Type: bugfix

Social: Fixed the Instagram max video length
4 changes: 4 additions & 0 deletions projects/plugins/social/changelog/fix-instagram-video-length
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
Significance: patch
Type: fixed

Social: Fixed the Instagram max video length

0 comments on commit 89c8342

Please sign in to comment.