Skip to content

Commit 028ed92

Browse files
committed
Fix incorrect method call
1 parent 373e818 commit 028ed92

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Tool/Sources/CodeiumService/CodeiumExtension.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -85,7 +85,7 @@ public final class CodeiumExtension: BuiltinExtension {
8585
do {
8686
guard let content else { return }
8787
guard let service = await serviceLocator.getService(from: workspace) else { return }
88-
try await service.notifyOpenTextDocument(fileURL: documentURL, content: content)
88+
try await service.notifyChangeTextDocument(fileURL: documentURL, content: content)
8989
} catch {
9090
Logger.gitHubCopilot.error(error.localizedDescription)
9191
}

0 commit comments

Comments
 (0)