Skip to content
This repository was archived by the owner on Jun 18, 2025. It is now read-only.

Commit 028ed92

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

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

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)