]> git.mxchange.org Git - friendica.git/commitdiff
Bugfix: The API picture upload created an invalid link
authorMichael <heluecht@pirati.ca>
Wed, 20 Sep 2017 21:47:12 +0000 (21:47 +0000)
committerMichael <heluecht@pirati.ca>
Wed, 20 Sep 2017 21:47:12 +0000 (21:47 +0000)
include/api.php

index 45c9ed2554df13370f662453b4afc426ea7b2ee8..bd579bf19adc3a1dacc0d5f3d9159a5caf0aab18 100644 (file)
@@ -3988,7 +3988,7 @@ $called_api = null;
                                );
 
                // adds link to the thumbnail scale photo
-               $arr['body'] = '[url=' . System::baseUrl() . '/photos/' . $owner_record[0]['name'] . '/image/' . $hash . ']'
+               $arr['body'] = '[url=' . System::baseUrl() . '/photos/' . $owner_record[0]['nick'] . '/image/' . $hash . ']'
                                        . '[img]' . System::baseUrl() . '/photo/' . $hash . '-' . "2" . '.'. $typetoext[$filetype] . '[/img]'
                                        . '[/url]';