Fix formatting

This commit is contained in:
Daniel Gasienica 2018-04-24 17:16:35 -04:00
parent b65370c8d7
commit 8e3c38d5fe
2 changed files with 12 additions and 6 deletions

View file

@ -222,7 +222,14 @@ exports.upgradeSchema = async (rawMessage, { writeNewAttachmentData } = {}) => {
}
let message = rawMessage;
const versions = [toVersion0, toVersion1, toVersion2, toVersion3, toVersion4, toVersion5];
const versions = [
toVersion0,
toVersion1,
toVersion2,
toVersion3,
toVersion4,
toVersion5,
];
for (let i = 0, max = versions.length; i < max; i += 1) {
const currentVersion = versions[i];