Skip to content

Commit

Permalink
fix #162464
Browse files Browse the repository at this point in the history
  • Loading branch information
sandy081 committed Oct 3, 2022
1 parent 83fa50f commit e202dbb
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/vs/platform/userDataSync/common/userDataSyncServiceIpc.ts
Original file line number Diff line number Diff line change
Expand Up @@ -17,8 +17,8 @@ import {

type ManualSyncTaskEvent<T> = { manualSyncTaskId: string; data: T };

function reviewSyncResource(syncResource: IUserDataSyncResource, userDataProfilesService: IUserDataProfilesService) {
return { ...syncResource, profie: reviveProfile(syncResource.profile, userDataProfilesService.profilesHome.scheme) };
function reviewSyncResource(syncResource: IUserDataSyncResource, userDataProfilesService: IUserDataProfilesService): IUserDataSyncResource {
return { ...syncResource, profile: reviveProfile(syncResource.profile, userDataProfilesService.profilesHome.scheme) };
}

export class UserDataSyncChannel implements IServerChannel {
Expand Down

0 comments on commit e202dbb

Please sign in to comment.