Skip to content
Merged
Changes from 1 commit
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
Prev Previous commit
Next Next commit
remove the
  • Loading branch information
GusPrice committed Sep 11, 2023
commit e140852ac1f0e45b92d499335e71b56d9b3009aa
2 changes: 1 addition & 1 deletion github/repos_contents.go
Original file line number Diff line number Diff line change
Expand Up @@ -92,7 +92,7 @@ func (r *RepositoryContent) GetContent() (string, error) {
}
return *r.Content, nil
case "none":
return "", fmt.Errorf("unsupported content encoding: %v, this may occur when the file size > 1 MB, if that is the case consider using DownloadContents", encoding)
return "", fmt.Errorf("unsupported content encoding: %v, this may occur when file size > 1 MB, if that is the case consider using DownloadContents", encoding)
Comment thread
gmlewis marked this conversation as resolved.
Outdated
default:
return "", fmt.Errorf("unsupported content encoding: %v", encoding)
}
Expand Down