···554554 logger.debug(`Updated site cache for ${did}/${rkey} with record CID ${recordCid}`);
555555556556 // Backfill settings if a record exists for this rkey
557557+ // Always skip settings invalidation here - the 'update' invalidation below
558558+ // already clears everything including the settings cache on the hosting service
557559 const settingsRecord = await fetchSettingsRecord(did, rkey, pdsEndpoint);
558560 if (settingsRecord) {
559561 await handleSettingsUpdate(did, rkey, settingsRecord.record, settingsRecord.cid, {
560560- skipInvalidation: options?.skipInvalidation,
562562+ skipInvalidation: true,
561563 });
562564 }
563565