1
0
mirror of https://github.com/RaidMax/IW4M-Admin.git synced 2025-06-10 15:20:48 -05:00

fix meta filter on profile

This commit is contained in:
RaidMax
2022-03-24 16:23:40 -05:00
parent 1b59941ab2
commit 58c9092888
3 changed files with 15 additions and 15 deletions

View File

@ -439,7 +439,7 @@ public class MetaServiceV2 : IMetaServiceV2
return ProcessInformationMeta(allMeta);
}
var meta = await _metaActions[metaType][0](request) as IEnumerable<T>;
var meta = await _metaActions[metaType][0](request, token) as IEnumerable<T>;
return meta;
}