License name fix
This commit is contained in:
2
LICENSE
2
LICENSE
@@ -1,6 +1,6 @@
|
|||||||
MIT License
|
MIT License
|
||||||
|
|
||||||
Copyright (c) 2021 Alex Ballas
|
Copyright (c) 2021 Alexandros Ballas
|
||||||
|
|
||||||
Permission is hereby granted, free of charge, to any person obtaining a copy
|
Permission is hereby granted, free of charge, to any person obtaining a copy
|
||||||
of this software and associated documentation files (the "Software"), to deal
|
of this software and associated documentation files (the "Software"), to deal
|
||||||
|
2
go2tv.go
2
go2tv.go
@@ -122,7 +122,7 @@ func devicePicker(i int) (string, error) {
|
|||||||
}
|
}
|
||||||
|
|
||||||
func initializeCloseHandler(tvdata soapcalls.TVPayload) {
|
func initializeCloseHandler(tvdata soapcalls.TVPayload) {
|
||||||
c := make(chan os.Signal)
|
c := make(chan os.Signal, 1)
|
||||||
signal.Notify(c, os.Interrupt, syscall.SIGTERM)
|
signal.Notify(c, os.Interrupt, syscall.SIGTERM)
|
||||||
go func() {
|
go func() {
|
||||||
<-c
|
<-c
|
||||||
|
Reference in New Issue
Block a user