[Plugin] Fix move to archive plugin names (#6113)

Mismatches in these names prevent this plugin from being disabled'able. https://github.com/koreader/koreader/pull/6101#issuecomment-623131390
This commit is contained in:
poire-z
2020-05-03 22:31:02 +02:00
committed by GitHub
parent ce3bf473da
commit eaabc42ea9
2 changed files with 2 additions and 2 deletions

View File

@@ -1,6 +1,6 @@
local _ = require("gettext")
return {
name = "move_to_archive",
name = "movetoarchive",
fullname = _("Move to archive"),
description = _([[Moves/copies current book to archive folder]]),
}

View File

@@ -14,7 +14,7 @@ local BaseUtil = require("ffi/util")
local _ = require("gettext")
local MoveToArchive = WidgetContainer:new{
name = "move2archive",
name = "movetoarchive",
}
function MoveToArchive:init()