mirror of
https://github.com/chuot/rdio-scanner.git
synced 2026-08-13 16:33:01 -06:00
Don't buildGroups if useGroup=false
This commit is contained in:
parent
9e3404a040
commit
a2eb2005de
|
|
@ -567,6 +567,10 @@ export class AppRdioScannerComponent implements OnDestroy, OnInit {
|
|||
}
|
||||
|
||||
private buildGroups(): void {
|
||||
if (!this.config.useGroup) {
|
||||
return;
|
||||
}
|
||||
|
||||
const groups: RdioScannerGroup[] = [];
|
||||
|
||||
this.systems.forEach((system: RdioScannerSystem) => {
|
||||
|
|
|
|||
Loading…
Reference in a new issue