fix:Fixed the issue that normal messages in version v4 are not showed (#222)

Co-authored-by: yuanziwei <yuanziwei@xiaomi.com>
This commit is contained in:
Akai
2024-07-24 10:56:47 +08:00
committed by GitHub
parent 2bc59db340
commit d9fc76d3a3

View File

@@ -141,6 +141,9 @@ module.controller('topicController', ['$scope', 'ngDialog', '$http', 'Notificati
if (type.includes("NORMAL")) { if (type.includes("NORMAL")) {
return true return true
} }
if (!localStorage.getItem('isV5') && type.includes("UNSPECIFIED")) {
return true
}
} }
if ($scope.filterDelay) { if ($scope.filterDelay) {
if (type.includes("DELAY")) { if (type.includes("DELAY")) {