Files
subtracks/app/state/migrations.ts
austinried a279a81d06 Revert "remove thumbnail cache"
This reverts commit e0db4931f1.
2022-03-22 20:39:50 +09:00

12 lines
207 B
TypeScript

const migrations: Array<(state: any) => any> = [
state => {
for (let server of state.settings.servers) {
server.usePlainPassword = false
}
return state
},
]
export default migrations