mirror of
https://github.com/containrrr/watchtower.git
synced 2025-12-16 15:10:12 +01:00
Fix update api url
This commit is contained in:
parent
fd658f0f30
commit
adb97f7ed0
1 changed files with 1 additions and 1 deletions
|
|
@ -95,7 +95,7 @@ export const check = async (containerId: string): Promise<CheckResponse> => {
|
|||
};
|
||||
|
||||
export const update = async (images?: string[]): Promise<boolean> => {
|
||||
let updateUrl = new URL(apiBasePath + "/update");
|
||||
let updateUrl = new URL(apiBasePath + "update");
|
||||
|
||||
if (images instanceof Array) {
|
||||
images.map((image) => updateUrl.searchParams.append("image", image));
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue