forked from DebaucheryLibrarian/traxxx
Passing refresh view parameter into profile interpolator. Updated Got Filled and Inserted API keys.
This commit is contained in:
@@ -360,7 +360,7 @@ async function fetchProfiles(actorIdsOrNames) {
|
||||
.leftJoin('media', 'actors_profiles.avatar_media_id', 'media.id');
|
||||
}
|
||||
|
||||
async function interpolateProfiles(actorIdsOrNames) {
|
||||
async function interpolateProfiles(actorIdsOrNames, refreshView) {
|
||||
const { interpolateProfiles: interpolateProfilesUtil } = await actorsCommon;
|
||||
|
||||
try {
|
||||
@@ -370,7 +370,7 @@ async function interpolateProfiles(actorIdsOrNames) {
|
||||
moment,
|
||||
slugify,
|
||||
omit,
|
||||
});
|
||||
}, { refreshView });
|
||||
} catch (error) {
|
||||
console.log(error);
|
||||
}
|
||||
|
||||
@@ -122,7 +122,7 @@ async function init() {
|
||||
}
|
||||
|
||||
if (argv.interpolateProfiles) {
|
||||
await interpolateProfiles(argv.interpolateProfiles.length > 0 ? argv.interpolateProfiles : null);
|
||||
await interpolateProfiles(argv.interpolateProfiles.length > 0 ? argv.interpolateProfiles : null, true);
|
||||
}
|
||||
|
||||
if (argv.flushActors) {
|
||||
|
||||
Reference in New Issue
Block a user