mirror of
https://github.com/Start9Labs/start-os.git
synced 2026-03-26 10:21:52 +00:00
Update connection.service.ts
This commit is contained in:
committed by
Aiden McClelland
parent
8c16258159
commit
1a61ad1812
@@ -50,7 +50,7 @@ export class ConnectionService {
|
||||
this.connectionFailure$.next(ConnectionFailure.None)
|
||||
} else if (!network) {
|
||||
this.connectionFailure$.next(ConnectionFailure.Network)
|
||||
} else if (!progress && progress.downloaded === progress.size) {
|
||||
} else if (!!progress && progress.downloaded === progress.size) {
|
||||
this.connectionFailure$.next(ConnectionFailure.None)
|
||||
} else if (!this.configService.isTor()) {
|
||||
this.connectionFailure$.next(ConnectionFailure.Lan)
|
||||
|
||||
Reference in New Issue
Block a user