The fid has been used as the localStorage key when storing puzzle progress. This is sloppy and could result in name collisions too easily. All crossword storage should be under the crossword localStorage key.
| Comment | File | Size | Author |
|---|---|---|---|
| #3 | crossword--local-storage--3203883--3.patch | 3.59 KB | danflanagan8 |
Comments
Comment #2
danflanagan8Comment #3
danflanagan8It took me about 5 seconds to hate that patch. The data is read and written frequently, so let's give each puzzle its own entry, with a key like
crossword:123where the number is the fid.Comment #5
danflanagan8