Added avatar credit exclusion to profile interpolation.

This commit is contained in:
DebaucheryLibrarian
2026-02-07 17:26:21 +01:00
parent b62c705b76
commit f62e8d6bf6
3 changed files with 15 additions and 2 deletions

View File

@@ -376,7 +376,10 @@ async function interpolateProfiles(actorIdsOrNames, refreshView) {
const { interpolateProfiles: interpolateProfilesUtil } = await actorsCommon;
try {
await interpolateProfilesUtil(actorIdsOrNames, commonContext, { refreshView });
await interpolateProfilesUtil(actorIdsOrNames, commonContext, {
refreshView,
...config.interpolation,
});
} catch (error) {
console.log(error);
}