5
0
mirror of https://github.com/wailsapp/wails.git synced 2025-05-02 16:51:16 +08:00

fixed return

This commit is contained in:
Ilgıt Yıldırım 2020-09-14 12:35:24 +02:00 committed by Lea Anthony
parent b48da620b3
commit a84f43d959

View File

@ -294,5 +294,5 @@ func (s *Store) Update(updater interface{}) {
// Get returns the value of the data that's kept in the current state / Store
func (s *Store) Get() interface{} {
return s.data
return s.data.Interface()
}