Skip to content
This repository has been archived by the owner on Jul 5, 2021. It is now read-only.

Commit

Permalink
bug fixes: v2 forward api not contains in route
Browse files Browse the repository at this point in the history
  • Loading branch information
TheSnowfield committed May 28, 2020
1 parent 7ac39b9 commit a3feddd
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion source/__loader__.ts
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,8 @@ const handler_request_favicon = async (response: ServerResponse) => {
}

const specific_routine: { [key: string]: RegExp } = {
'/v1/arc/forward': /^\/v1\/arc\/forward\//
'/v1/arc/forward': /^\/v1\/arc\/forward\//,
'/v2/arc/forward': /^\/v2\/arc\/forward\//
};
const handler_request_publicapi =
async (response: ServerResponse, argument: string,
Expand Down

0 comments on commit a3feddd

Please sign in to comment.