Skip to content

Commit

Permalink
Merge pull request #45 from fluentci-io/fix/fluentci-studio-proxy
Browse files Browse the repository at this point in the history
Fix/fluentci studio proxy
  • Loading branch information
tsirysndr authored May 28, 2024
2 parents 9552492 + d8cfa2c commit 01c50a7
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -110,7 +110,7 @@ fluentci studio
fluentci --help

Usage: fluentci [pipeline] [jobs...]
Version: 0.14.4
Version: 0.14.5

Description:

Expand Down
2 changes: 1 addition & 1 deletion src/cmd/studio.ts
Original file line number Diff line number Diff line change
Expand Up @@ -125,7 +125,7 @@ async function studio({ port }: { port?: number }) {
url.hostname = "127.0.0.1";
url.port = FLUENTCI_STUDIO_PORT;

return await fetch(url.href, {
return await fetch(url.href.replace("project/assets", "assets"), {
headers: req.headers,
method: req.method,
body: req.body,
Expand Down
2 changes: 1 addition & 1 deletion src/consts.ts
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import { dir } from "../deps.ts";

export const VERSION = "0.14.4";
export const VERSION = "0.14.5";

export const BASE_URL = "https://api.fluentci.io/v1";

Expand Down

0 comments on commit 01c50a7

Please sign in to comment.