diff --git a/plugins/exporter.koplugin/main.lua b/plugins/exporter.koplugin/main.lua index 93a5ea654..4a0bca05f 100644 --- a/plugins/exporter.koplugin/main.lua +++ b/plugins/exporter.koplugin/main.lua @@ -183,7 +183,11 @@ function Exporter:exportClippings(clippings) v.timestamp = timestamp local status = v:export(exportables) if status then - table.insert(statuses, _(v.name .. ": Exported to " ) .. v:getFilePath(exportables)) + if v.is_remote then + table.insert(statuses, _(v.name .. ": Exported successfully.")) + else + table.insert(statuses, _(v.name .. ": Exported to " ) .. v:getFilePath(exportables)) + end else table.insert(statuses, _(v.name .. ": Failed to export.")) end