1
0
mirror of https://github.com/Jermolene/TiddlyWiki5 synced 2024-06-24 22:33:16 +00:00

Fix GitLab saver Base64 encoding (#4255)

This commit is contained in:
Bimba Laszlo 2019-09-10 15:16:06 +02:00 committed by Jeremy Ruston
parent ff6070f033
commit 3732c83ad4

View File

@ -71,7 +71,7 @@ GitLabSaver.prototype.save = function(text,method,callback) {
}
var data = {
commit_message: $tw.language.getRawString("ControlPanel/Saving/GitService/CommitMessage"),
content: $tw.utils.base64Encode(text),
content: text,
branch: branch,
sha: sha
};