License name fix

This commit is contained in:
Alex Ballas
2021-02-11 19:11:45 +02:00
parent 2ec0f854b9
commit e5ed4bd0b4
2 changed files with 2 additions and 2 deletions

View File

@@ -1,6 +1,6 @@
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
of this software and associated documentation files (the "Software"), to deal

View File

@@ -122,7 +122,7 @@ func devicePicker(i int) (string, error) {
}
func initializeCloseHandler(tvdata soapcalls.TVPayload) {
c := make(chan os.Signal)
c := make(chan os.Signal, 1)
signal.Notify(c, os.Interrupt, syscall.SIGTERM)
go func() {
<-c