1
0
Thibaut Courouble 9 жил өмнө
parent
commit
a13ac78a8c
1 өөрчлөгдсөн 1 нэмэгдсэн , 1 устгасан
  1. 1 1
      lib/app.rb

+ 1 - 1
lib/app.rb

@@ -301,7 +301,7 @@ class App < Sinatra::Application
   get %r{\A/([\w~\.%]+)(\-[\w\-]+)?(/.*)?\z} do |doc, type, rest|
     doc.sub! '%7E', '~'
     return redirect "/#{DOC_REDIRECTS[doc]}#{type}#{rest}", 301 if DOC_REDIRECTS.key?(doc)
-    return redirect "/angularjs/api#{rest}", 301 if doc == 'angular' && rest.start_with?('/ng')
+    return redirect "/angularjs/api#{rest}", 301 if doc == 'angular' && rest && rest.start_with?('/ng')
     return 404 unless @doc = find_doc(doc)
 
     if rest.nil?