From 9c203bba170dd008246343e7e9cb6d6bb2274809 Mon Sep 17 00:00:00 2001 From: phil Date: Sun, 8 Aug 2021 11:59:41 +0200 Subject: [PATCH] =?UTF-8?q?Korrigiere=20Pr=C3=BCfung?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- tasks/fixes.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tasks/fixes.yml b/tasks/fixes.yml index 9174af7..3bfd206 100644 --- a/tasks/fixes.yml +++ b/tasks/fixes.yml @@ -5,7 +5,7 @@ dest: "{{ nextcloud_install_path }}/apps/files_pdfviewer/js/files_pdfviewer-main.js" owner: "{{ instance.user }}" group: "{{ instance.user }}" - when: nc_installed_version.stdout <= "21.0.2" + when: (nc_installed_version.stdout|int) <= 21.0.2 - name: "fixes: {{ instance.domain }}: https://github.com/nextcloud/server/pull/27015" get_url: @@ -13,4 +13,4 @@ dest: "{{ nextcloud_install_path }}/apps/files_trashbin/lib/Storage.php" owner: "{{ instance.user }}" group: "{{ instance.user }}" - when: nc_installed_version.stdout <= "21.0.2" + when: (nc_installed_version.stdout|int) <= 21.0.2