Skip to content

Commit

Permalink
fix 🐛 : fix gh proxy
Browse files Browse the repository at this point in the history
  • Loading branch information
HerbertHe committed Nov 14, 2024
1 parent 9212c10 commit 10c78d9
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 @@ -47,7 +47,7 @@ See <https://m3u.ibert.me> to get more.
# add custom github raw source proxy url
# The custom proxy service you configured MUST supports the request urls, like `${CUSTOM_GITHUB_RAW_SOURCE_PROXY_URL}/https://raw.githubusercontent.com/xxx/xxx`
# If you want to deploy the ghproxy by yourself, see https://github.com/hunshcn/gh-proxy
# CUSTOM_GITHUB_RAW_SOURCE_PROXY_URL=https://ghproxy.net
# CUSTOM_GITHUB_RAW_SOURCE_PROXY_URL=https://ghp.ci/

# enable iptv checker, default is false
# ENABLE_IPTV_CHECKER=true
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "iptv-sources",
"version": "1.6.4",
"version": "1.6.5",
"main": "index.js",
"repository": "git@github.com:HerbertHe/iptv-sources.git",
"author": "HerbertHe <Herbert.He0229@gmail.com>",
Expand Down
2 changes: 1 addition & 1 deletion src/utils/handlers.ts
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ export const get_rollback_urls = () => {

export const get_github_raw_proxy_url = () => {
const custom = process.env.CUSTOM_GITHUB_RAW_SOURCE_PROXY_URL
return !!custom ? custom : `https://ghproxy.net`
return !!custom ? custom : `https://ghp.ci`
}

export const replace_github_raw_proxy_url = (s: string) => {
Expand Down

0 comments on commit 10c78d9

Please sign in to comment.