From 4d31b7dadf240289c91b53a30d4d5e2774906a3d Mon Sep 17 00:00:00 2001 From: "G. Gibson" Date: Sun, 30 Mar 2025 11:26:28 -0700 Subject: [PATCH] bug fix --- Services/www/www.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Services/www/www.rb b/Services/www/www.rb index 0a3d2a9..ca9b1b9 100644 --- a/Services/www/www.rb +++ b/Services/www/www.rb @@ -301,7 +301,7 @@ www_service.on(:publish_route, {:description => "Publish Route", :usage => "{ :p # Code Usage: # ::GxG::SERVICES[:core].publish_route(:get,"/",{}) do |the_method,the_request,the_session| # end - Node0.publish_route(data[:http_method], data[:path], data[:options, &data[:code]]) + Node0.publish_route(data[:http_method], data[:path], data[:options], &data[:code]) # {:result => true} end