Merge pull request #632 from outline/cache-clear

Bump cache version
This commit is contained in:
Tom Moor
2018-03-26 22:24:10 -07:00
committed by GitHub

View File

@ -3,7 +3,7 @@ import localForage from 'localforage';
class CacheStore {
key: string;
version: number = 1;
version: number = 2;
cacheKey = (key: string): string => {
return `CACHE_${this.key}_${this.version}_${key}`;