Преглед изворни кода

Version update

* also Fixed an issue in notifications frontend
luis пре 7 година
родитељ
комит
064fa93686

+ 0 - 1
browser/vue-flow/src/store/flow/actions.js

@@ -57,7 +57,6 @@ export default {
     ctx.dispatch(m.DOCUMENT_SYNC)
   },
   [m.NOTIFICATION_ADD] (ctx, notification) {
-    utils.activity()
     ctx.commit(m.NOTIFICATION_ADD, notification)
     clearTimeout(this.notificationTimeout)
     this.notificationTimeout = setTimeout(() => {

+ 1 - 1
browser/vue-flow/src/store/ws.js

@@ -87,7 +87,7 @@ export default store => {
   })
   flowService.on('sessionNotify', (v) => {
     utils.activity()
-    store.commit(flow.NOTIFICATION_ADD, v.data)
+    store.dispatch(flow.NOTIFICATION_ADD, v.data)
   })
   flowService.on('sessionJoin', (v) => {
     utils.activity()

+ 1 - 1
go/src/flow/flowserver/version.go

@@ -2,5 +2,5 @@ package flowserver
 
 const (
   //Version contains version of the package
-  Version = "0.1 - built: 2018-01-23 22:20:02 UTC"
+  Version = "0.0.1 - built: 2018-02-13 01:36:28 UTC"
 )