Skip to content

Commit

Permalink
refactor(web): Minor changes
Browse files Browse the repository at this point in the history
  • Loading branch information
Nekidev committed Jan 26, 2024
1 parent a01da7d commit 42f2b9f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/web/src/app/api/auth/oauth2/anilist/callback/route.ts
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ import { cookies } from "next/headers";
import { redirect } from "next/navigation";
import { type NextRequest } from "next/server";

export const dynamic = "force-dynamic"; // defaults to auto
export const dynamic = "force-dynamic";

function encrypt(string: string, key: string, iv: string): string {
const cipher = crypto.createCipheriv("aes-256-cbc", key, iv);
Expand Down

0 comments on commit 42f2b9f

Please sign in to comment.