|
@@ -151,7 +151,7 @@ export default class ListenLayer {
|
|
|
};
|
|
|
const lines = dataService.getLines();
|
|
|
for (const lineId in lines) {
|
|
|
- if (exceptLineId != null && exceptLineIds.hasOwnProperty(lineId)) {
|
|
|
+ if (exceptLineIds && exceptLineIds.hasOwnProperty(lineId)) {
|
|
|
continue;
|
|
|
}
|
|
|
const line = dataService.getLine(lineId);
|