replies timeline only, appview-less bluesky client

fix redirect uri

ptr.pet 9812dce8 4b05e9fc

verified
Changed files
+2 -2
src
lib
+1 -1
flake.nix
··· 17 17 devShells.default = config.mk-naked-shell.lib.mkNakedShell { 18 18 name = "nucleus-devshell"; 19 19 packages = with pkgs; [ 20 - nodejs-slim_latest deno biome 20 + nodejs-slim_latest deno 21 21 ]; 22 22 shellHook = '' 23 23 export PATH="$PATH:$PWD/node_modules/.bin"
+1 -1
src/lib/oauth.ts
··· 15 15 dpop_bound_access_tokens: true 16 16 }; 17 17 18 - export const redirectUri = domain; 18 + export const redirectUri = `${domain}/`; 19 19 export const clientId = dev 20 20 ? `http://localhost` + 21 21 `?redirect_uri=${encodeURIComponent(redirectUri)}` +