From c6f84e00b6a82a5b4e7bd0a34dc048c958b596b8 Mon Sep 17 00:00:00 2001 From: "G. Gibson" Date: Tue, 28 Feb 2023 11:28:42 -0800 Subject: [PATCH] minor tweaks 2 --- Services/www/www/gxg-www.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Services/www/www/gxg-www.rb b/Services/www/www/gxg-www.rb index edd6147..c5a6ec6 100644 --- a/Services/www/www/gxg-www.rb +++ b/Services/www/www/gxg-www.rb @@ -158,7 +158,7 @@ module GxGwww when :downgrade_credential response = [200, {"content-type" => "application/text"}, {:result => ::GxGwww::api_logout(the_session['session_id']), :error => nil}.gxg_export.to_json.encrypt(the_session["csrf"]).encode64] when :interface - response = [200, {"content-type" => "application/text"}, @service.interface(credential).gxg_export.to_json.encrypt(the_session["csrf"]).encode64] + response = [200, {"content-type" => "application/text"}, {:result => @service.interface(credential)}.gxg_export.to_json.encrypt(the_session["csrf"]).encode64] else begin call_response = @service.call_event(operation, credential)