Your ROOT_URL in app.ini is https://git.cloudchain.link/ but you are visiting https://dash.bss.nz/open-source-mirrors/ghostfolio/commit/efd9e7a5c78916285ed8a5ea63c28b5a33c3b81f You should set ROOT_URL correctly, otherwise the web may not work correctly.

Fix RedisClient import ()

pull/2170/head^2
Thomas Kaul 1 year ago committed by GitHub
parent d9ced885e1
commit efd9e7a5c7
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -1,8 +1,8 @@
import { Store } from 'cache-manager';
import Redis from 'redis';
import { RedisClient } from 'redis';
export interface RedisStore extends Store {
getClient: () => Redis.RedisClient;
getClient: () => RedisClient;
isCacheableValue: (value: any) => boolean;
name: 'redis';
}

Loading…
Cancel
Save