Refactoring

This commit is contained in:
aditya-K2
2023-05-19 01:39:52 +05:30
parent 81e28400f8
commit 0ca835d3ad

View File

@@ -66,9 +66,9 @@ func (a *AlbumsView) QueueEntry() {
go func() {
if err := spt.QueueAlbum(alb.ID); err != nil {
msg <- err.Error()
} else {
msg <- (alb.Name) + " queued succesfully!"
return
}
msg <- (alb.Name) + " queued succesfully!"
}()
}