Another minor stupid fix.

This commit is contained in:
Paulo Gustavo Veiga 2012-09-16 21:25:59 -03:00
parent bb26d73462
commit 66e214ca88

View File

@ -74,7 +74,7 @@ public class SupportedUserAgent implements Serializable {
final OperatingSystem os = userAgent.getOperatingSystem();
return browser == Browser.IE8 && os == OperatingSystem.WINDOWS && header.contains("chromeframe");
return browser == Browser.IE8 && os == OperatingSystem.WINDOWS && !header.contains("chromeframe");
}
public static SupportedUserAgent create(@NotNull final String userAgent) {