-
Notifications
You must be signed in to change notification settings - Fork 13
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
feat: branch support in installation #224
Changes from 1 commit
cf1703b
94095f1
c664c66
06f5f4f
d726c11
fce999b
a2fab1e
bd718b9
ddffe9f
d9a5d64
54314f6
2f47af7
1954db7
52e1b99
5863482
ba4a315
61f569a
070e6d7
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change | ||||||
---|---|---|---|---|---|---|---|---|
|
@@ -91,7 +91,7 @@ async fn coffee_install( | |||||||
let try_dynamic = body.try_dynamic; | ||||||||
|
||||||||
let mut coffee = data.coffee.lock().await; | ||||||||
let result = coffee.install(plugin, false, try_dynamic).await; | ||||||||
let result = coffee.install(plugin, false, try_dynamic, None).await; | ||||||||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Idealy, you should also handle changing the httpd request to There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Maybe you meant this, but I am not sure if this is correct- d726c11 There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
Correct, but why you are not passing the It is easy, use the following code
Suggested change
|
||||||||
|
||||||||
handle_httpd_response!(result, "Plugin '{plugin}' installed successfully") | ||||||||
} | ||||||||
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This value isn't used anywhere