Skip to content

Commit

Permalink
Fix migration of very-old etherpads.
Browse files Browse the repository at this point in the history
I don't know why ueberDB's name changed.

The commit message does not explain it:

ether/ueberDB@423e40f

There is this tweet, and the tweets chronologically after it, but they just complain vaguely of an "npm issue" without explaining the issue:

https://twitter.com/johnmclear/status/683454253856337920

Fixes #29
  • Loading branch information
kentonv committed Sep 13, 2016
1 parent 22dae6f commit 7744cb5
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/sandstorm-migrate.js
Original file line number Diff line number Diff line change
Expand Up @@ -9,8 +9,8 @@
// place. But we need to migrate old pads. So that's where this script comes
// in.

var ueberDB = require("ueberDB");
var dirtyDB = require("ueberDB/node_modules/dirty");
var ueberDB = require("ueberdb2");
var dirtyDB = require("ueberdb2/node_modules/dirty");

var dirty = new dirtyDB("var/dirty.db");
var sqlite = new ueberDB.database("sqlite", {filename: "var/sqlite3.db"});
Expand Down

0 comments on commit 7744cb5

Please sign in to comment.