JustSong 2 лет назад
Родитель
Сommit
279ae8ad50
2 измененных файлов с 2 добавлено и 2 удалено
  1. 1 1
      controller/relay.go
  2. 1 1
      web/src/components/ChannelsTable.js

+ 1 - 1
controller/relay.go

@@ -11,7 +11,7 @@ import (
 func Relay(c *gin.Context) {
 	channelType := c.GetInt("channel")
 	host := common.ChannelHosts[channelType]
-	req, err := http.NewRequest(c.Request.Method, fmt.Sprintf("%s/%s", host, c.Request.URL.String()), c.Request.Body)
+	req, err := http.NewRequest(c.Request.Method, fmt.Sprintf("%s%s", host, c.Request.URL.String()), c.Request.Body)
 	if err != nil {
 		c.JSON(http.StatusOK, gin.H{
 			"error": gin.H{

+ 1 - 1
web/src/components/ChannelsTable.js

@@ -281,7 +281,7 @@ const ChannelsTable = () => {
 
         <Table.Footer>
           <Table.Row>
-            <Table.HeaderCell colSpan='6'>
+            <Table.HeaderCell colSpan='7'>
               <Button size='small' as={Link} to='/channel/add' loading={loading}>
                 添加新的渠道
               </Button>