We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c28c332 commit 41ee540Copy full SHA for 41ee540
includes/Modules/Analytics.php
@@ -1286,7 +1286,7 @@ protected function has_data_for_url( $url ) {
1286
);
1287
1288
if ( is_wp_error( $reports ) ) {
1289
- return false;
+ $reports = array(); // Bypass data check and cache.
1290
}
1291
1292
foreach ( $reports as $report ) {
includes/Modules/Search_Console.php
@@ -364,7 +364,7 @@ protected function has_data_for_url( $url ) {
364
365
366
if ( is_wp_error( $response_rows ) ) {
367
+ $response_rows = array(); // Bypass data check and cache.
368
369
370
foreach ( $response_rows as $data_row ) {
0 commit comments