mirror of
https://dev.azure.com/hugendubel/ISA/_git/ISA-Frontend
synced 2025-12-31 09:37:15 +01:00
#1577 WA Bugfix Update EnvirnomentChannel for Online, App and Mobile Channels
This commit is contained in:
@@ -17,6 +17,11 @@ export class EnvironmentChannelPipe implements PipeTransform {
|
||||
return this.channels.get(0);
|
||||
}
|
||||
|
||||
const channelOnlineMobileApp: number = clientChannel;
|
||||
if (channelOnlineMobileApp === 8 || channelOnlineMobileApp === 16 || channelOnlineMobileApp === 24) {
|
||||
return 'hugendubel.de';
|
||||
}
|
||||
|
||||
const channels: string[] = [];
|
||||
this.channels.forEach((value, key) => {
|
||||
// tslint:disable-next-line: no-bitwise
|
||||
@@ -24,7 +29,6 @@ export class EnvironmentChannelPipe implements PipeTransform {
|
||||
channels.push(value);
|
||||
}
|
||||
});
|
||||
|
||||
return channels.join(join);
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user