From a5e109a1e45c3383f73ae48be9481a5ab0e7f313 Mon Sep 17 00:00:00 2001 From: marvin78 Date: Tue, 4 Feb 2025 09:27:06 +0000 Subject: [PATCH] 98_todoist.pm: allow alphanumeric project-id git-svn-id: https://svn.fhem.de/fhem/trunk@29618 2b470e98-0d58-463d-a4d8-8e2adae1ed80 --- fhem/FHEM/98_todoist.pm | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/fhem/FHEM/98_todoist.pm b/fhem/FHEM/98_todoist.pm index d6542ef63..52a192886 100644 --- a/fhem/FHEM/98_todoist.pm +++ b/fhem/FHEM/98_todoist.pm @@ -17,7 +17,7 @@ eval "use Date::Parse;1" or $missingModule .= "Date::Parse "; ####################### # Global variables -my $version = "1.3.26"; +my $version = "1.3.28"; my $apiUrl = "https://api.todoist.com/sync/v9/"; my $srandUsed; @@ -687,7 +687,7 @@ sub todoist_CreateTask($$) { # data array for API - we could transfer more data %args = ( - project_id => int($hash->{PID}), + project_id => $hash->{PID}, content => $titleS, );