mirror of
https://github.com/lumehq/lume.git
synced 2025-04-06 19:08:17 +02:00
auto upgraded http to https
This commit is contained in:
parent
8bf386ca9b
commit
2239606235
@ -93,7 +93,7 @@
|
||||
}
|
||||
},
|
||||
"security": {
|
||||
"csp": null
|
||||
"csp": "upgrade-insecure-requests"
|
||||
},
|
||||
"updater": {
|
||||
"active": true,
|
||||
|
@ -38,7 +38,9 @@ export const useProfileMetadata = (pubkey: string) => {
|
||||
}, []);
|
||||
|
||||
useEffect(() => {
|
||||
if (!cacheProfile) {
|
||||
let ignore = false;
|
||||
|
||||
if (!cacheProfile && !ignore) {
|
||||
fetchProfileMetadata(pubkey)
|
||||
.then((res: any) => {
|
||||
// update state
|
||||
@ -48,6 +50,10 @@ export const useProfileMetadata = (pubkey: string) => {
|
||||
})
|
||||
.catch(console.error);
|
||||
}
|
||||
|
||||
return () => {
|
||||
ignore = true;
|
||||
};
|
||||
}, [cacheProfile, insertPlebToDB, pubkey]);
|
||||
|
||||
if (cacheProfile) {
|
||||
|
Loading…
x
Reference in New Issue
Block a user