修改etag以符合bunny

This commit is contained in:
Enoch 2024-11-08 00:09:27 +08:00
parent 4939723556
commit af6d330f81

View File

@ -103,7 +103,7 @@ class Server
return redirect('/');
}
if($source->type==0){
$etag='"'.md5($source->source).'"';
$etag='W/"'.md5($source->source).'"';
$if_none_match = $request->header('If-None-Match',null);
if($if_none_match==$etag){
return response('',304);