remove redundant truth check
parent
8845ea467a
commit
5123c5cf76
|
@ -248,7 +248,7 @@ class RemoteFilesystem
|
||||||
|
|
||||||
if (isset($options['bitbucket-token'])) {
|
if (isset($options['bitbucket-token'])) {
|
||||||
// First time be optimistic and do not use the token for a BitBucket download.
|
// First time be optimistic and do not use the token for a BitBucket download.
|
||||||
if (isset($this->bitBucketUrlsTriedWithoutAuth[$origFileUrl]) && $this->bitBucketUrlsTriedWithoutAuth[$origFileUrl]) {
|
if (isset($this->bitBucketUrlsTriedWithoutAuth[$origFileUrl])) {
|
||||||
$fileUrl .= (false === strpos($fileUrl,'?') ? '?' : '&') . 'access_token=' . $options['bitbucket-token'];
|
$fileUrl .= (false === strpos($fileUrl,'?') ? '?' : '&') . 'access_token=' . $options['bitbucket-token'];
|
||||||
} else {
|
} else {
|
||||||
$this->bitBucketUrlsTriedWithoutAuth[$origFileUrl] = true;
|
$this->bitBucketUrlsTriedWithoutAuth[$origFileUrl] = true;
|
||||||
|
|
Loading…
Reference in New Issue