rescue very old site

This commit is contained in:
chiu 2022-08-05 04:12:51 +00:00
parent 8d0679ca93
commit ff7a0d9394
1 changed files with 6 additions and 2 deletions

View File

@ -56,7 +56,11 @@ module Ask
OrbitApp.registration "Ask", :type => "ModuleApp" do
module_label "ask.ask"
base_url File.expand_path File.dirname(__FILE__)
set_keyword_contstraints ['/asks']
begin
set_keyword_contstraints ['/asks']
rescue => e
puts ['the site is too old']
end
widget_methods ["widget"]
widget_settings [{"data_count"=>10}]
# taggable "AskQuestion"
@ -153,4 +157,4 @@ module Ask
end
end
end
end
end