mirror of
https://github.com/Ernous/TorrServerJellyfin.git
synced 2025-12-19 13:36:09 +05:00
don't exit on dlna err
Android 13+ issue - https://github.com/YouROK/TorrServer/issues/253
This commit is contained in:
@@ -29,7 +29,8 @@ func Start() {
|
|||||||
ifaces, err := net.Interfaces()
|
ifaces, err := net.Interfaces()
|
||||||
if err != nil {
|
if err != nil {
|
||||||
logger.Levelf(log.Error, "%v", err)
|
logger.Levelf(log.Error, "%v", err)
|
||||||
os.Exit(1)
|
return
|
||||||
|
// os.Exit(1) // avoid start on Android 13+
|
||||||
}
|
}
|
||||||
for _, i := range ifaces {
|
for _, i := range ifaces {
|
||||||
// interface flags seem to always be 0 on Windows
|
// interface flags seem to always be 0 on Windows
|
||||||
|
|||||||
Reference in New Issue
Block a user