Compare commits

..

No commits in common. "a637e3b5bc244a0801823c2867401584e82545ab" and "429aeabb6058090c013ce2d5718772b4d0c7a21a" have entirely different histories.

View File

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