Merge remote-tracking branch 'upstream/master'

This commit is contained in:
ITOH
2021-02-26 18:43:02 +01:00
4 changed files with 4 additions and 4 deletions

View File

@@ -1 +1 @@
export { encode } from "https://deno.land/std@0.87.0/encoding/base64.ts";
export { encode } from "https://deno.land/std@0.88.0/encoding/base64.ts";

View File

@@ -1,2 +1,2 @@
export { serve } from "https://deno.land/std@0.87.0/http/server.ts";
export { serve } from "https://deno.land/std@0.88.0/http/server.ts";
export { verify } from "https://esm.sh/@evan/wasm@0.0.49/target/ed25519/deno.js";

View File

@@ -62,7 +62,7 @@ export async function processQueue(id: string) {
response.headers,
);
if (response.status < 200 && response.status >= 400) {
if (response.status < 200 || response.status >= 400) {
restCache.eventHandlers.error(
"httpError",
queuedRequest.payload,

View File

@@ -2,5 +2,5 @@ export {
assertArrayIncludes,
assertEquals,
assertExists,
} from "https://deno.land/std@0.86.0/testing/asserts.ts";
} from "https://deno.land/std@0.88.0/testing/asserts.ts";
export * from "../mod.ts";