Compare commits

...

2 Commits

Author SHA1 Message Date
a637e3b5bc Merge pull request '修改etag以符合bunny' (#6) from master into main
Reviewed-on: #6
2024-11-08 00:10:20 +08:00
Enoch
af6d330f81 修改etag以符合bunny 2024-11-08 00:09:27 +08:00

View File

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