Skip to content
This repository has been archived by the owner on Apr 10, 2019. It is now read-only.

Commit

Permalink
fix(storage): fix save method
Browse files Browse the repository at this point in the history
  • Loading branch information
WittBulter committed Jan 19, 2019
1 parent 55ce0fb commit 130fdfd
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/utils/storage.coffee
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ class Storage extends BaseIO
save: (key, value = null) ->
return {} if not key
key_value = { "#{key}": value }
next = Object.assign {}, key_value, do @find_all
next = Object.assign {}, do @find_all, key_value
@save_dict next
key_value

Expand Down

0 comments on commit 130fdfd

Please sign in to comment.