[Archived] Middleware for handling requests for file system resources including files and directories. Project moved to https://github.com/aspnet/AspNetCore
I believe there is a bug in the ComptueIfModifiedSince() method of the StaticFileContext class. The following line (213) reads:
if (ifUnmodifiedSince.HasValue && ifModifiedSince <= now)
but should read:
if (ifUnmodifiedSince.HasValue && ifUnmodifiedSince <= now)
I believe there is a bug in the ComptueIfModifiedSince() method of the StaticFileContext class. The following line (213) reads:
if (ifUnmodifiedSince.HasValue && ifModifiedSince <= now)
but should read:
if (ifUnmodifiedSince.HasValue && ifUnmodifiedSince <= now)