1
0
mirror of https://github.com/laurent22/joplin.git synced 2025-06-12 22:57:38 +02:00

Clipper: Support 'author' property

This commit is contained in:
Laurent Cozic
2018-06-27 20:14:20 +01:00
parent 187fb1b85d
commit 424c8a2723
3 changed files with 6 additions and 0 deletions

View File

@ -94,6 +94,7 @@ class ClipperServer {
}
if (requestNote.source_url) output.source_url = requestNote.source_url;
if (requestNote.author) output.author = requestNote.author;
return output;
}