Skip to content

Commit

Permalink
fix: change field systemType to appFramework.
Browse files Browse the repository at this point in the history
Signed-off-by: Gordon <[email protected]>
  • Loading branch information
FGadvancer committed Jan 8, 2025
1 parent 71788b3 commit 78005c0
Showing 1 changed file with 7 additions and 6 deletions.
13 changes: 7 additions & 6 deletions internal/third/log.go
Original file line number Diff line number Diff line change
Expand Up @@ -4,14 +4,15 @@ import (
"bufio"
"context"
"fmt"
"github.com/openimsdk/openim-sdk-core/v3/internal/third/file"
"io"
"math/rand"
"os"
"path/filepath"
"strings"
"time"

"github.com/openimsdk/openim-sdk-core/v3/internal/third/file"

"github.com/openimsdk/openim-sdk-core/v3/pkg/api"

"github.com/openimsdk/openim-sdk-core/v3/pkg/ccontext"
Expand Down Expand Up @@ -113,11 +114,11 @@ func (c *Third) uploadLogs(ctx context.Context, line int, ex string, progress Pr
}
ccontext.Info(ctx)
reqLog := &third.UploadLogsReq{
Platform: c.platformID,
SystemType: c.systemType,
Version: version.Version,
FileURLs: []*third.FileURL{{Filename: zippath, URL: resp.URL}},
Ex: ex,
Platform: c.platformID,
AppFramework: c.systemType,
Version: version.Version,
FileURLs: []*third.FileURL{{Filename: zippath, URL: resp.URL}},
Ex: ex,
}
return api.UploadLogs.Execute(ctx, reqLog)
}
Expand Down

0 comments on commit 78005c0

Please sign in to comment.