mirror of
https://github.com/NapNeko/NapCatQQ.git
synced 2025-12-18 20:30:08 +08:00
fix: defaultHttpUrl
This commit is contained in:
parent
26525a0ff9
commit
1b874a0264
@ -28,7 +28,10 @@ export interface OneBotApiDebugProps {
|
||||
const OneBotApiDebug: React.FC<OneBotApiDebugProps> = (props) => {
|
||||
const { path, data } = props
|
||||
const url = new URL(window.location.origin).href
|
||||
const defaultHttpUrl = url.replace(':6099', ':3000')
|
||||
let defaultHttpUrl = url.replace(':6099', ':3000')
|
||||
if (defaultHttpUrl.endsWith('/')) {
|
||||
defaultHttpUrl = defaultHttpUrl.slice(0, -1)
|
||||
}
|
||||
const [httpConfig, setHttpConfig] = useState({
|
||||
url: defaultHttpUrl,
|
||||
token: ''
|
||||
|
||||
Loading…
Reference in New Issue
Block a user