portalHelper: Use the correct enum values

Without this the tests never succeeded because they were comparing
loadEvent to undefined resulting in the icon not changing as it
should.

https://bugzilla.gnome.org/show_bug.cgi?id=780606
This commit is contained in:
Catalin Iacob 2017-03-23 18:27:40 +01:00 committed by Florian Müllner
parent 647c8df12f
commit a0c31478c0

View File

@ -188,9 +188,9 @@ const PortalWindow = new Lang.Class({
}, },
_onLoadChanged: function(view, loadEvent) { _onLoadChanged: function(view, loadEvent) {
if (loadEvent == WebKit.LOAD_STARTED) { if (loadEvent == WebKit.LoadEvent.STARTED) {
this._headerBar.setSecurityIcon(PortalHelperSecurityLevel.NOT_YET_DETERMINED); this._headerBar.setSecurityIcon(PortalHelperSecurityLevel.NOT_YET_DETERMINED);
} else if (loadEvent == WebKit.LOAD_COMMITTED) { } else if (loadEvent == WebKit.LoadEvent.COMMITTED) {
let tlsInfo = this._webView.get_tls_info(); let tlsInfo = this._webView.get_tls_info();
let ret = tlsInfo[0]; let ret = tlsInfo[0];
let flags = tlsInfo[2]; let flags = tlsInfo[2];