Skip to content

Commit

Permalink
Correct Safari version range
Browse files Browse the repository at this point in the history
according to the comment #6856 (comment) , we should support Safari 11.1 +, which means safari 11.1 is included in the version range.
  • Loading branch information
ZheSun88 committed Dec 31, 2019
1 parent 13c4b27 commit f425fc7
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -638,7 +638,7 @@ public boolean isTooOldToFunctionProperly() {
// Safari 11.1+
if (isSafari() && (getBrowserMajorVersion() < 11
|| getBrowserMajorVersion() == 11
&& getBrowserMinorVersion() <= 1)) {
&& getBrowserMinorVersion() < 1)) {
return true;
}
// Firefox 43+ for now
Expand Down

0 comments on commit f425fc7

Please sign in to comment.