98_todoist: added title="<item>" option for addTask

git-svn-id: https://svn.fhem.de/fhem/trunk@24380 2b470e98-0d58-463d-a4d8-8e2adae1ed80
This commit is contained in:
marvin78 2021-05-04 08:43:10 +00:00
parent 5c78dd7fd3
commit 48296c46b9
2 changed files with 4 additions and 1 deletions

View File

@ -1,5 +1,6 @@
# Add changes at the top of the list. Keep it in ASCII, and 80-char wide. # Add changes at the top of the list. Keep it in ASCII, and 80-char wide.
# Do not insert empty lines here, update check depends on it. # Do not insert empty lines here, update check depends on it.
- feature: 98_todoist: added title="<item>" option for addTask
- bugfix: 10_WS980: v1.3.0 - fix invalid values like 0xffff - bugfix: 10_WS980: v1.3.0 - fix invalid values like 0xffff
- bugfix: 73_AutoShuttersControl: roolback fix #1149463 - bugfix: 73_AutoShuttersControl: roolback fix #1149463
- bugfix: 73_AutoShuttersControl: fix logic error in EventProcessing - bugfix: 73_AutoShuttersControl: fix logic error in EventProcessing

View File

@ -17,7 +17,7 @@ eval "use Date::Parse;1" or $missingModule .= "Date::Parse ";
####################### #######################
# Global variables # Global variables
my $version = "1.3.9"; my $version = "1.3.10";
my $srandUsed; my $srandUsed;
@ -636,6 +636,8 @@ sub todoist_CreateTask($$) {
my $title=encode_utf8($tmp[0]); my $title=encode_utf8($tmp[0]);
$title = $h->{"title"} if ($h->{"title"});
my $check=1; my $check=1;
# we can avoid duplicates in FHEM. There may still come duplicates coming from another app # we can avoid duplicates in FHEM. There may still come duplicates coming from another app