You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
26 lines
685 B
26 lines
685 B
import { cloneDeep } from 'lodash';
|
|
|
|
const version = 45;
|
|
|
|
/**
|
|
* Replaces {@code PreferencesController.ipfsGateway} with 'dweb.link' if set
|
|
*/
|
|
export default {
|
|
version,
|
|
async migrate(originalVersionedData) {
|
|
const versionedData = cloneDeep(originalVersionedData);
|
|
versionedData.meta.version = version;
|
|
const state = versionedData.data;
|
|
versionedData.data = transformState(state);
|
|
return versionedData;
|
|
},
|
|
};
|
|
|
|
const outdatedGateways = ['ipfs.io', 'ipfs.dweb.link'];
|
|
|
|
function transformState(state) {
|
|
if (outdatedGateways.includes(state?.PreferencesController?.ipfsGateway)) {
|
|
state.PreferencesController.ipfsGateway = 'dweb.link';
|
|
}
|
|
return state;
|
|
}
|
|
|