You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
etag/if-none-match: Server sends etag header that must change if the file changes (e.g. hash of the file contents). If a client sends if-none-match with a matching value, server may return empty 204 Not Modified. https://developer.mozilla.org/en-US/docs/Web/HTTP/Headers/If-None-Match
Support either (or both) of:
etag
/if-none-match
: Server sendsetag
header that must change if the file changes (e.g. hash of the file contents). If a client sendsif-none-match
with a matching value, server may return empty204 Not Modified
. https://developer.mozilla.org/en-US/docs/Web/HTTP/Headers/If-None-Matchlast-modified
/if-modified-since
: Server sendslast-modified
with file modification timestamp. If a client sendsif-modified-since
>= modification timestamp server may return empty204 Not Modified
. https://developer.mozilla.org/en-US/docs/Web/HTTP/Headers/If-Modified-SinceThe text was updated successfully, but these errors were encountered: