Skip to content

Commit

Permalink
Merge pull request #199 from SliverKeigo/main
Browse files Browse the repository at this point in the history
fix: issue #198
  • Loading branch information
OXeu authored Jul 8, 2024
2 parents e401d68 + ac72bfd commit ccf1d6c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion client/src/state/config.tsx
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import { createContext } from "react";

const defaultFavicon = process.env.AVATAR ? `//wsrv.nl/?url=${process.env.AVATAR}&w=144&h=144&mask=circle` : '/favicon.ico'
const defaultFavicon = process.env.AVATAR ? `//wsrv.nl/?url=${encodeURIComponent(process.env.AVATAR)}&w=144&h=144&mask=circle` : '/favicon.ico';
export const defaultClientConfig = new Map(Object.entries({
"favicon": defaultFavicon,
"counter.enabled": true,
Expand Down

0 comments on commit ccf1d6c

Please sign in to comment.