Read the statement by Michael Teeuw here.
Development Branch -- MMM-Unsplash
-
@sdetweil saw that. Love the fact that it worked just a few days ago. I have a funny feeling itās between Unsplash API and new work in MM. Iām reading the API docs now. Itās a simple setup so hopefully a tweak shouldnāt be too tough.
-
@yk its not in MMā¦ donāt you love coincidences??
the api just didnāt return the data it used to return -
@sdetweil hehe. Agreed. And now I have a decision to make. Hack it to work or rewrite. š
-
@yk well, how did the ācustomā image compare to one of the other choices? and can u force the other choice back to what custom wasā¦
should be only a couple lines of codeā¦
i checked my background image code modules and they are okā¦ (local files)
-
@sdetweil Fixed. Itās a change in the Unsplash API. obj.urls.custom is no longer an option returned in JSON. I changed ācustomā to ārawā and itās good.
Lovely.
-
ā¦ I should check mine and flip over to dev myself.
-
@bkeyport this problem had nothing to do with MMā¦ just coincidenceā¦(which I HATE!)
-
@sdetweil Yeah, I know, but it donāt hurt to check.
-
@yk said in Development Branch -- MMM-Unsplash:
obj.urls.custom
for all out there as stupid as I amā¦ :-) its this which has to be modified from .custom to .raw (row 130 in my WallberryTheme.js file).
from:
p.url = photoData.urls.custom;to:
p.url = photoData.urls.raw;Cheers and thanks for the hack mates!
Patrick