fix: various fixes and tweaks (#701)

This commit is contained in:
Daniel Lautzenheiser
2023-04-14 13:52:11 -04:00
committed by GitHub
parent 422b7798da
commit 364612e9ae
22 changed files with 101 additions and 32 deletions

View File

@ -169,7 +169,10 @@ export default class ProxyBackend implements BackendClass {
async getMediaFile(path: string): Promise<ImplementationMediaFile> {
const file = await this.request<MediaFile>({
action: 'getMediaFile',
params: { branch: this.branch, path },
params: {
branch: this.branch,
path,
},
});
return deserializeMediaFile(file);
}