Skip to content

Commit

Permalink
Merge pull request microsoft#162566 from microsoft/sandy081/fun-wildfowl
Browse files Browse the repository at this point in the history
  • Loading branch information
sandy081 authored Oct 4, 2022
2 parents bb7692d + e202dbb commit a12109a
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 a12109a

Please sign in to comment.