mirror of
https://github.com/Start9Labs/start-os.git
synced 2026-03-30 20:14:49 +00:00
but on login
This commit is contained in:
committed by
Aiden McClelland
parent
d5819c25b9
commit
968586e91f
@@ -69,7 +69,14 @@ export class AppListPage {
|
|||||||
|
|
||||||
private watchNewlyRecovered (): Observable<unknown> {
|
private watchNewlyRecovered (): Observable<unknown> {
|
||||||
return this.patch.watch$('package-data').pipe(
|
return this.patch.watch$('package-data').pipe(
|
||||||
|
<<<<<<< HEAD
|
||||||
filter((pkgs) => Object.keys(pkgs).length !== this.pkgs.length),
|
filter((pkgs) => Object.keys(pkgs).length !== this.pkgs.length),
|
||||||
|
=======
|
||||||
|
filter((pkgs) => {
|
||||||
|
console.log('PKGSPKGS', pkgs)
|
||||||
|
return !!pkgs && Object.keys(pkgs).length !== this.pkgs.length
|
||||||
|
}),
|
||||||
|
>>>>>>> 672a93ed (but on login)
|
||||||
tap((pkgs) => {
|
tap((pkgs) => {
|
||||||
const ids = Object.keys(pkgs)
|
const ids = Object.keys(pkgs)
|
||||||
const newIds = ids.filter(
|
const newIds = ids.filter(
|
||||||
|
|||||||
Reference in New Issue
Block a user