Frank Kobzik has uploaded a new change for review. Change subject: frontend: hotfix - spice activex plugin upgrade in ie11 ......................................................................
frontend: hotfix - spice activex plugin upgrade in ie11 This hotfix handles broken logic for retrieving spice activex version on in the engine which prevented ie11 clients to install updates. Change-Id: I86615c88545ba26282c4f891389e4b94e85de117 Signed-off-by: Frantisek Kobzik <fkob...@redhat.com> Bug-Url: https://bugzilla.redhat.com/1085772 --- M frontend/webadmin/modules/uicommonweb/src/main/java/org/ovirt/engine/ui/uicommonweb/Configurator.java 1 file changed, 4 insertions(+), 6 deletions(-) git pull ssh://gerrit.ovirt.org:29418/ovirt-engine refs/changes/24/28324/1 diff --git a/frontend/webadmin/modules/uicommonweb/src/main/java/org/ovirt/engine/ui/uicommonweb/Configurator.java b/frontend/webadmin/modules/uicommonweb/src/main/java/org/ovirt/engine/ui/uicommonweb/Configurator.java index ee96a57..3558024 100644 --- a/frontend/webadmin/modules/uicommonweb/src/main/java/org/ovirt/engine/ui/uicommonweb/Configurator.java +++ b/frontend/webadmin/modules/uicommonweb/src/main/java/org/ovirt/engine/ui/uicommonweb/Configurator.java @@ -296,12 +296,10 @@ protected void updateSpiceVersion() { // Update spice version from the text files which are located on the server. // If can't update spice version - leave the default value from the Configurator. - if ((clientOsType().equalsIgnoreCase("Windows")) && (clientBrowserType().equalsIgnoreCase("Explorer"))) { //$NON-NLS-1$ //$NON-NLS-2$ - if (clientPlatformType().equalsIgnoreCase("win32")) { //$NON-NLS-1$ - updateSpice32Version(); - } else if (clientPlatformType().equalsIgnoreCase("win64")) { //$NON-NLS-1$ - updateSpice64Version(); - } + if (clientPlatformType().equalsIgnoreCase("win32")) { //$NON-NLS-1$ + updateSpice32Version(); + } else if (clientPlatformType().equalsIgnoreCase("win64")) { //$NON-NLS-1$ + updateSpice64Version(); } } -- To view, visit http://gerrit.ovirt.org/28324 To unsubscribe, visit http://gerrit.ovirt.org/settings Gerrit-MessageType: newchange Gerrit-Change-Id: I86615c88545ba26282c4f891389e4b94e85de117 Gerrit-PatchSet: 1 Gerrit-Project: ovirt-engine Gerrit-Branch: ovirt-engine-3.3 Gerrit-Owner: Frank Kobzik <fkob...@redhat.com> _______________________________________________ Engine-patches mailing list Engine-patches@ovirt.org http://lists.ovirt.org/mailman/listinfo/engine-patches