]> git.g-eek.se Git - interimap.git/commitdiff
wibble
authorGuilhem Moulin <guilhem@fripost.org>
Sun, 6 Sep 2015 19:44:43 +0000 (21:44 +0200)
committerGuilhem Moulin <guilhem@fripost.org>
Sun, 6 Sep 2015 19:44:43 +0000 (21:44 +0200)
lib/Net/IMAP/Sync.pm

index 785aa5419efbc0c0870ad8dd9bef4a2c1409eac8..6561a66a66dbd891ca3b91f64dbfecdb2c564f57 100644 (file)
@@ -1287,7 +1287,7 @@ sub _select_or_examine($$$;$$) {
     my $self = shift;
     my $command = shift;
     my $mailbox = shift;
-    my ($uids, $seqs) = @_;
+    my ($seqs, $uids) = @_;
 
     my $pcache = $self->{_PCACHE}->{$mailbox} //= {};
     my $cache = $self->{_CACHE}->{$mailbox} //= {};
@@ -1298,7 +1298,7 @@ sub _select_or_examine($$$;$$) {
     if ($self->_enabled('QRESYNC') and ($pcache->{HIGHESTMODSEQ} // 0) > 0 and ($pcache->{UIDNEXT} // 1) > 1) {
         $command .= " (QRESYNC ($pcache->{UIDVALIDITY} $pcache->{HIGHESTMODSEQ} "
                                ."1:".($pcache->{UIDNEXT}-1);
-        $command .= " ($uids $seqs)" if defined $uids and defined $seqs;
+        $command .= " ($seqs $uids)" if defined $seqs and defined $uids;
         $command .= "))";
     }