Skip Menu |

Preferred bug tracker

Please visit the preferred bug tracker to report your issue.

This queue is for tickets about the WebService-Dropbox CPAN distribution.

Report information
The Basics
Id: 87212
Status: resolved
Priority: 0/
Queue: WebService-Dropbox

People
Owner: Nobody in particular
Requestors: rurban [...] x-ray.at
Cc:
AdminCc:

Bug Information
Severity: (no value)
Broken in: (no value)
Fixed in: (no value)



Subject: [PATCH] wrong return precedence
returns binds stronger than or, so the expressions after or are ignored. See https://rt.perl.org/rt3/Public/Bug/Display.html?id=59802
Subject: WebService-Dropbox-1.17-returnor.patch
diff -bu WebService-Dropbox-1.17-LKXBxu/lib/WebService/Dropbox.pm~ WebService-Dropbox-1.17-LKXBxu/lib/WebService/Dropbox.pm --- WebService-Dropbox-1.17-LKXBxu/lib/WebService/Dropbox.pm~ 2013-02-07 02:34:56.000000000 -0600 +++ WebService-Dropbox-1.17-LKXBxu/lib/WebService/Dropbox.pm 2013-07-23 12:43:43.697273222 -0500 @@ -185,7 +185,7 @@ $path, { upload_id => $data->{upload_id}, ( $params ? %$params : () ) - }, $opts) or die $self->error; + }, $opts) || die $self->error; } $tmp->flush;