diff --git a/perl-HTML-FillInForm.changes b/perl-HTML-FillInForm.changes
index 9dc50fb..39680fa 100644
--- a/perl-HTML-FillInForm.changes
+++ b/perl-HTML-FillInForm.changes
@@ -1,3 +1,8 @@
+-------------------------------------------------------------------
+Thu Oct 7 17:04:52 UTC 2021 - Pedro Monreal
+
+- Remove patch rt-100926.patch merged upstream
+
-------------------------------------------------------------------
Sun Sep 26 03:07:06 UTC 2021 - Tina Müller
diff --git a/perl-HTML-FillInForm.spec b/perl-HTML-FillInForm.spec
index 7e51b29..8776148 100644
--- a/perl-HTML-FillInForm.spec
+++ b/perl-HTML-FillInForm.spec
@@ -22,7 +22,7 @@ Version: 2.22
Release: 0
#Upstream: Artistic-1.0 or GPL-1.0-or-later
Summary: Populates HTML Forms with data
-License: GPL-1.0-or-later OR Artistic-1.0
+License: Artistic-1.0 OR GPL-1.0-or-later
URL: https://metacpan.org/release/%{cpan_name}
Source0: https://cpan.metacpan.org/authors/id/O/OA/OALDERS/%{cpan_name}-%{version}.tar.gz
Source1: cpanspec.yml
diff --git a/rt-100926.patch b/rt-100926.patch
deleted file mode 100644
index b388840..0000000
--- a/rt-100926.patch
+++ /dev/null
@@ -1,17 +0,0 @@
-diff -ur a/HTML-FillInForm-2.21/lib/HTML/FillInForm.pm b/HTML-FillInForm-2.21/lib/HTML/FillInForm.pm
---- a/HTML-FillInForm-2.21/lib/HTML/FillInForm.pm 2014-08-14 17:21:43.000000000 +0200
-+++ b/HTML-FillInForm-2.21/lib/HTML/FillInForm.pm 2015-08-27 15:10:07.462905794 +0200
-@@ -424,7 +424,12 @@
- # traverse the list in reverse order for backwards compatibility
- # with the previous implementation.
- for my $o (reverse @{$self->{objects}}) {
-- my @v = $o->param($param);
-+ my @v;
-+ if ($o->can('multi_param')) {
-+ @v = $o->multi_param($param);
-+ } else {
-+ @v = $o->param($param);
-+ }
-
- next unless @v;
-