From a84f43d959d1bf4366b784a3939931c30235aeee Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ilg=C4=B1t=20Y=C4=B1ld=C4=B1r=C4=B1m?= Date: Mon, 14 Sep 2020 12:35:24 +0200 Subject: [PATCH] fixed return --- runtime/store.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/runtime/store.go b/runtime/store.go index b89dac6d..4468296b 100644 --- a/runtime/store.go +++ b/runtime/store.go @@ -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() }