Fixed link command

This commit is contained in:
Tracker-Friendly 2025-03-24 19:50:13 +00:00
parent 0bf31df81e
commit 1ecb5873ee

View file

@ -124,13 +124,15 @@ func scrape(liveChatID string) {
// Iterate through each live chat message // Iterate through each live chat message
for _, item := range responseJSON.Items { for _, item := range responseJSON.Items {
println("Processing message from ", item.AutorDetails.DisplayName) println("Processing message from ", item.AutorDetails.DisplayName)
println("Message: ", item.Snippet.TextMessageDetails.MessageText)
// Check if the message starts with !verify // Check if the message starts with !verify
if strings.HasPrefix(item.Snippet.TextMessageDetails.MessageText, "!verify ") { if strings.HasPrefix(item.Snippet.TextMessageDetails.MessageText, "!link ") {
println("User ", item.AutorDetails.DisplayName, " is verifying")
// Get the channel ID // Get the channel ID
channelID := item.AutorDetails.ChannelID channelID := item.AutorDetails.ChannelID
// Check if the user is in pendingSessions // Check if the user is in pendingSessions
pendingSession, ok := pendingSessions[strings.TrimPrefix("!verify ", item.Snippet.TextMessageDetails.MessageText)] pendingSession, ok := pendingSessions[strings.TrimPrefix(item.Snippet.TextMessageDetails.MessageText, "!link ")]
if !ok { if !ok {
// This user does not need to be verified // This user does not need to be verified
continue continue
@ -195,6 +197,8 @@ func getLiveChatID(videoID string) string {
panic("Error decoding JSON: " + err.Error()) panic("Error decoding JSON: " + err.Error())
} }
println(responseJSON)
liveChatID := responseJSON["items"].([]interface{})[0].(map[string]interface{})["liveStreamingDetails"].(map[string]interface{})["activeLiveChatId"].(string) liveChatID := responseJSON["items"].([]interface{})[0].(map[string]interface{})["liveStreamingDetails"].(map[string]interface{})["activeLiveChatId"].(string)
return liveChatID return liveChatID