Skip to content

Commit 1ed614d

Browse files
committed
Fix that projectRootURL is not set
1 parent 9c92e81 commit 1ed614d

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

Core/Sources/SuggestionService/SuggestionService.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ public final class SuggestionService: SuggestionServiceType {
3434

3535
func createGitHubCopilotServiceIfNeeded() throws -> GitHubCopilotSuggestionServiceType {
3636
if let gitHubCopilotService { return gitHubCopilotService }
37-
let newService = try GitHubCopilotSuggestionService()
37+
let newService = try GitHubCopilotSuggestionService(projectRootURL: projectRootURL)
3838
gitHubCopilotService = newService
3939
Task {
4040
try await Task.sleep(nanoseconds: 1_000_000_000)

0 commit comments

Comments
 (0)