workaround for #26

This commit is contained in:
aditya-K2 2022-08-04 03:32:58 +05:30
parent 6c2458b320
commit 73982220a6
1 changed files with 11 additions and 11 deletions

22
main.go
View File

@ -42,17 +42,6 @@ func main() {
// Connecting the Renderer to the Main UI
ui.ConnectRenderer(Renderer)
if c, err := CONN.CurrentSong(); err != nil {
utils.Print("RED", "Could Not Retrieve the Current Song\n")
panic(err)
} else {
if len(c) != 0 {
Renderer.Start(c["file"])
} else {
Renderer.Start("stop")
}
}
UI := ui.NewApplication()
// Connecting the Notification Server to the Main UI
@ -97,6 +86,17 @@ func main() {
Notify := notify.NewNotificationServer()
Notify.Start()
if c, err := CONN.CurrentSong(); err != nil {
utils.Print("RED", "Could Not Retrieve the Current Song\n")
panic(err)
} else {
if len(c) != 0 {
Renderer.Start(c["file"])
} else {
Renderer.Start("stop")
}
}
// Connecting Notification Server to Client and Rendering Module so that they can send Notifications
client.SetNotificationServer(Notify)
render.SetNotificationServer(Notify)