We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 45ad77c commit df6839fCopy full SHA for df6839f
src/vs/workbench/contrib/userDataSync/browser/userDataSync.ts
@@ -383,6 +383,9 @@ export class UserDataSyncWorkbenchContribution extends Disposable implements IWo
383
}
384
385
private handleInvalidContentError({ profile, syncResource: source }: IUserDataSyncResource): void {
386
+ if (this.userDataProfileService.currentProfile.id !== profile.id) {
387
+ return;
388
+ }
389
const key = `${profile.id}:${source}`;
390
if (this.invalidContentErrorDisposables.has(key)) {
391
return;
0 commit comments