mirror of
https://gitea.invidious.io/iv-org/shard-kemal.git
synced 2024-08-15 00:53:36 +00:00
Update kemal.cr
This commit is contained in:
parent
17f944ef9d
commit
fdf38b23c8
3 changed files with 43 additions and 43 deletions
|
@ -28,7 +28,7 @@ at_exit do
|
|||
get "/__kemal__/:image" do |env|
|
||||
image = env.params["image"]
|
||||
file_path = File.expand_path("libs/kemal/images/#{image}", Dir.current)
|
||||
env.add_header "Content-Type", "application/octet-stream"
|
||||
env.response.headers.add "Content-Type", "application/octet-stream"
|
||||
File.read(file_path) if File.exists? file_path
|
||||
end
|
||||
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
class Kemal::StaticFileHandler < HTTP::StaticFileHandler
|
||||
def call(request)
|
||||
return call_next(request) if request.path.not_nil! == "/"
|
||||
def call(context)
|
||||
return call_next(context) if context.request.path.not_nil! == "/"
|
||||
super
|
||||
end
|
||||
end
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue