Skip to content

Commit

Permalink
fix: fix open chat issue for windows (#214)
Browse files Browse the repository at this point in the history
  • Loading branch information
cdkmn authored Sep 6, 2024
1 parent f6a2ef3 commit 937667b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lua/codeium/api.lua
Original file line number Diff line number Diff line change
Expand Up @@ -475,7 +475,7 @@ function Server:new()
elseif os_info.os == "macos" then
os.execute("open '" .. url .. "'")
elseif os_info.os == "windows" then
os.execute("start " .. url)
os.execute(string.format('start "" "%s"', url))
else
notify.error("Unsupported operating system")
end
Expand Down

0 comments on commit 937667b

Please sign in to comment.