contacts rewire #9

Merged
dan merged 7 commits from contacts into trunk 2021-03-16 20:49:12 +00:00
1 changed files with 5 additions and 1 deletions
Showing only changes of commit 8e78e64603 - Show all commits

6
lib.go
View File

@ -144,7 +144,11 @@ func c_GetAppBusEvent() *C.char {
// GetAppBusEvent blocks until an event
func GetAppBusEvent() string {
return eventHandler.GetNextEvent()
var json = ""
for json != "" {
json = eventHandler.GetNextEvent()
}
return json
}
//export c_GetProfileRepaintEvent