We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 58b3d60 commit 8390cacCopy full SHA for 8390cac
components/server/src/github/file-provider.ts
@@ -60,7 +60,7 @@ export class GithubFileProvider implements FileProvider {
60
path,
61
ref: commit.revision,
62
headers: {
63
- accept: "application/vnd.github.VERSION.raw",
+ accept: "application/vnd.github.raw",
64
},
65
};
66
@@ -70,7 +70,7 @@ export class GithubFileProvider implements FileProvider {
70
if (typeof response.data === "string") {
71
return response.data;
72
}
73
- log.warn("GithubFileProvider.getFileContent – unexpected response type.", {
+ log.warn("GithubFileProvider.getFileContent – unexpected response type.", {
74
request: params,
75
response: {
76
0 commit comments