diff --git a/src/angular-app/bellows/core/utility.service.ts b/src/angular-app/bellows/core/utility.service.ts index b8071f24c0..f54eaed002 100644 --- a/src/angular-app/bellows/core/utility.service.ts +++ b/src/angular-app/bellows/core/utility.service.ts @@ -24,7 +24,7 @@ export class UtilityService { } static isAudio(tag: string): boolean { - const tagAudioPattern = /^\w{2,3}-Zxxx-x(-\w{2,3})*-[aA][uU][dD][iI][oO]$/; + const tagAudioPattern = /^\w{2,3}-Zxxx-x-.*[aA][uU][dD][iI][oO]$/; return tagAudioPattern.test(tag); }