Skip to content
This repository has been archived by the owner on Sep 11, 2024. It is now read-only.

Commit

Permalink
always log on return false
Browse files Browse the repository at this point in the history
  • Loading branch information
bwindels authored and jryans committed May 29, 2019
1 parent 22efb31 commit aeaa4c0
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/utils/FontManager.js
Original file line number Diff line number Diff line change
Expand Up @@ -38,8 +38,9 @@ function safariVersionCheck(ua) {
return colrFontSupported;
}
} catch (err) {
console.error("Couldn't determine Safari version to check COLR font support, assuming no.", err);
console.error("Error in Safari COLR version check", err);
}
console.warn("Couldn't determine Safari version to check COLR font support, assuming no.");
return false;
}

Expand Down

0 comments on commit aeaa4c0

Please sign in to comment.