浏览代码

fix: 解决获取余额没有走代理域名的问题 (#122)

二丫讲梵 2 年之前
父节点
当前提交
62709540ae
共有 1 个文件被更改,包括 4 次插入1 次删除
  1. 4 1
      public/gpt.go

+ 4 - 1
public/gpt.go

@@ -35,7 +35,10 @@ type Billing struct {
 
 func GetBalance() (Billing, error) {
 	var data Billing
-	url := "https://api.openai.com/dashboard/billing/credit_grants"
+	var url string = "https://api.openai.com/dashboard/billing/credit_grants"
+	if Config.BaseURL != "" {
+		url = Config.BaseURL + "/dashboard/billing/credit_grants"
+	}
 	resp, err := InitAiCli().R().Get(url)
 	if err != nil {
 		return data, err