Skip to content

Commit

Permalink
Merge pull request #239 from szepeviktor/patch-1
Browse files Browse the repository at this point in the history
Fix property case in Navigation_Routing_Component
  • Loading branch information
westonruter authored Feb 12, 2020
2 parents 78e8e5b + 13a667f commit 9bd27f3
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -63,9 +63,9 @@ public function serve( WP_Service_Worker_Scripts $scripts ) {

$revision = PWA_VERSION;

$revision .= sprintf( ';%s=%s', $template, wp_get_theme( $template )->Version );
$revision .= sprintf( ';%s=%s', $template, wp_get_theme( $template )->version );
if ( $template !== $stylesheet ) {
$revision .= sprintf( ';%s=%s', $stylesheet, wp_get_theme( $stylesheet )->Version );
$revision .= sprintf( ';%s=%s', $stylesheet, wp_get_theme( $stylesheet )->version );
}

// Ensure the user-specific offline/500 pages are precached, and that they update when user logs out or switches to another user.
Expand Down

0 comments on commit 9bd27f3

Please sign in to comment.