XFE Git
XFE Studio Git
Git 首页 全局搜索
XFE 主站 文档 NuGet
公开
关注 0 Fork 0 Star 1
返回提交历史

XFEstudio/gpt4free

change discord icon to telegram icon on gui

d3040b0c
Commenter123321 <36051603+Commenter123321@users.noreply.github.com>
提交于

代码差异

2 个文件 +2 -2
Modified g4f/gui/client/html/index.html +1 -1
@@ -79,7 +79,7 @@
79 79 <span>Clear Conversations</span>
80 80 </button>
81 81 <div class="info">
82 <i class="fa-brands fa-discord"></i>
82 <i class="fa-brands fa-telegram"></i>
83 83 <span class="convo-title">telegram: <a href="https://t.me/g4f_official">@g4f_official</a><br>
84 84 </span>
85 85 </div>
Modified g4f/gui/client/js/chat.v2.js +1 -1
@@ -144,7 +144,7 @@ const ask_gpt = async (message) => {
144 144
145 145 chunk = new TextDecoder().decode(value);
146 146
147 if (chunk.includes(`<form id="challenge-form" action="/backend-api/v2/conversation?`)) {
147 if (chunk.includes(`<form id="challenge-form" action="/backend-api/v2/conversation?")) {
148 148 chunk = `cloudflare token expired, please refresh the page.`;
149 149 }
150 150