Skip to content

Commit

Permalink
Update version number
Browse files Browse the repository at this point in the history
  • Loading branch information
saberzero1 committed May 10, 2024
1 parent 7ec2f95 commit 02ca07b
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
2 changes: 1 addition & 1 deletion manifest.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"id": "quartz-syncer",
"name": "Quartz Syncer",
"version": "1.1.4",
"version": "1.1.5",
"minAppVersion": "0.12.0",
"description": "Sync Obsidian Markdown for Quartz",
"author": "Emile Bangma",
Expand Down
3 changes: 2 additions & 1 deletion src/repositoryConnection/RepositoryConnection.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
import { Octokit } from "@octokit/core";
import Logger from "js-logger";
import { Base64 } from "js-base64";
import { CompiledPublishFile } from "src/publishFile/PublishFile";

const logger = Logger.get("repository-connection");
Expand Down Expand Up @@ -351,7 +352,7 @@ export class RepositoryConnection {
"POST /repos/{owner}/{repo}/git/blobs",
{
...this.getBasePayload(),
content: asset.content,
content: Base64.encode(asset.content),
encoding: "base64",
},
);
Expand Down

0 comments on commit 02ca07b

Please sign in to comment.