fix: jssdk support

pull/2712/head
withchao 12 months ago
parent 48b7b15081
commit 45256382ef

@ -9,7 +9,7 @@ sessionToken:
# Internal address of the MinIO server
internalAddress: localhost:10005
# External address of the MinIO server, accessible from outside. Supports both HTTP and HTTPS using a domain name
externalAddress: http://172.16.8.12:10005
externalAddress: http://external_ip:10005
# Flag to enable or disable public read access to the bucket
publicRead: false

@ -1,37 +0,0 @@
package api
import (
"github.com/openimsdk/protocol/msg"
"sort"
"testing"
)
func TestName(t *testing.T) {
val := sortActiveConversations{
Conversation: []*msg.ActiveConversation{
{
ConversationID: "100",
LastTime: 100,
},
{
ConversationID: "200",
LastTime: 200,
},
{
ConversationID: "300",
LastTime: 300,
},
{
ConversationID: "400",
LastTime: 400,
},
},
//PinnedConversationIDs: map[string]struct{}{
// "100": {},
// "300": {},
//},
}
sort.Sort(&val)
t.Log(val)
}
Loading…
Cancel
Save