Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion pkg/tunnel/replay_part_upload.go
Original file line number Diff line number Diff line change
Expand Up @@ -86,7 +86,7 @@
// api finish time
if _, err1 := p.ApiClient.SessionFinished(p.SessionId, p.replayMeta.DateEnd); err1 != nil {
logger.Errorf("PartUploader %s finish session error: %v", p.SessionId, err1)
return err
return err1
}
// write meta file
metaBuf, _ = json.Marshal(p.replayMeta)
Expand Down Expand Up @@ -377,7 +377,7 @@
if err != nil {
return scan, err
}
defer fd.Close()

Check failure on line 380 in pkg/tunnel/replay_part_upload.go

View workflow job for this annotation

GitHub Actions / lint

Error return value of `fd.Close` is not checked (errcheck)
info, err := fd.Stat()
if err != nil {
return scan, err
Expand Down
1 change: 1 addition & 0 deletions ui/src/hooks/useGuacamoleClient.ts
Original file line number Diff line number Diff line change
Expand Up @@ -298,6 +298,7 @@ export function useGuacamoleClient(t: any) {

const handleMouseEnter = () => {
document.body.focus();
display.showCursor(false);
nextTick(() => {
sink.focus();
});
Expand Down
Loading