Skip to content

Commit

Permalink
Sites: Consider .com sites as upgradeable
Browse files Browse the repository at this point in the history
  • Loading branch information
tyxla committed May 24, 2017
1 parent bec60d7 commit 9510156
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion client/my-sites/sites/sites.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ export const Sites = React.createClass( {

// Filter out sites with no upgrades on particular routes
if ( /^\/domains/.test( path ) || /^\/plans/.test( this.props.sourcePath ) ) {
return site.isSiteUpgradeable !== false;
return ! site.isJetpack || site.isSiteUpgradable;
}

return site;
Expand Down

0 comments on commit 9510156

Please sign in to comment.