mirror of
https://github.com/ether/etherpad-lite.git
synced 2025-01-31 19:02:59 +01:00
lint: Avoid snake case
This commit is contained in:
parent
06f0318dc4
commit
38b2ffe899
1 changed files with 2 additions and 2 deletions
|
@ -192,7 +192,7 @@ Pad.prototype.getInternalRevisionAText = async function (targetRev) {
|
||||||
// get all needed data out of the database
|
// get all needed data out of the database
|
||||||
|
|
||||||
// start to get the atext of the key revision
|
// start to get the atext of the key revision
|
||||||
const p_atext = this.db.getSub(`pad:${this.id}:revs:${keyRev}`, ['meta', 'atext']);
|
const atextp = this.db.getSub(`pad:${this.id}:revs:${keyRev}`, ['meta', 'atext']);
|
||||||
|
|
||||||
// get all needed changesets
|
// get all needed changesets
|
||||||
const changesets = [];
|
const changesets = [];
|
||||||
|
@ -202,7 +202,7 @@ Pad.prototype.getInternalRevisionAText = async function (targetRev) {
|
||||||
})));
|
})));
|
||||||
|
|
||||||
// we should have the atext by now
|
// we should have the atext by now
|
||||||
let atext = await p_atext;
|
let atext = await atextp;
|
||||||
atext = Changeset.cloneAText(atext);
|
atext = Changeset.cloneAText(atext);
|
||||||
|
|
||||||
// apply all changesets to the key changeset
|
// apply all changesets to the key changeset
|
||||||
|
|
Loading…
Reference in a new issue