You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
/* translators: 1: the size of the payload, 2: the maximum allowed payload size */
230
+
__( 'JSON payload size is %1$s bytes which is larger than the maximum allowed size of %2$s bytes.', 'optimization-detective' ),
231
+
number_format_i18n( $content_length ),
232
+
number_format_i18n( $max_size )
233
+
),
234
+
array( 'status' => 413 )
235
+
);
236
+
}
237
+
217
238
// TODO: This should be changed from store_url_metric($slug, $url_metric) instead be update_post( $slug, $group_collection ). As it stands, store_url_metric() is duplicating logic here.
0 commit comments