summaryrefslogtreecommitdiff
path: root/http/file_server.ts
diff options
context:
space:
mode:
Diffstat (limited to 'http/file_server.ts')
-rwxr-xr-xhttp/file_server.ts5
1 files changed, 2 insertions, 3 deletions
diff --git a/http/file_server.ts b/http/file_server.ts
index 20ad45be6..19a94c6aa 100755
--- a/http/file_server.ts
+++ b/http/file_server.ts
@@ -7,7 +7,6 @@
// https://github.com/indexzero/http-server/blob/master/test/http-server-test.js
const { ErrorKind, cwd, args, stat, readDir, open } = Deno;
-import { DenoError } from "deno";
import {
listenAndServe,
ServerRequest,
@@ -181,8 +180,8 @@ async function serveFile(req: ServerRequest, filename: string) {
async function serveFallback(req: ServerRequest, e: Error) {
if (
- e instanceof DenoError &&
- (e as DenoError<any>).kind === ErrorKind.NotFound
+ e instanceof Deno.DenoError &&
+ (e as Deno.DenoError<any>).kind === ErrorKind.NotFound
) {
return {
status: 404,