We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ed16588 commit dd616ccCopy full SHA for dd616cc
src/modules/github.js
@@ -43,6 +43,9 @@
43
44
if (Array.isArray(o)) {
45
o = {data:o};
46
+ }
47
+
48
+ if (o.data) {
49
paging(o, headers, req);
50
o.data.forEach(formatUser);
51
}
src/modules/soundcloud.js
@@ -69,6 +69,7 @@
69
o.thumbnail = o.avatar_url;
70
o.name = o.username || o.full_name;
71
72
73
return o;
74
75
src/modules/twitter.js
@@ -120,6 +120,7 @@
120
// See: https://dev.twitter.com/overview/general/user-profile-images-and-banners
121
o.thumbnail = o.profile_image_url_https || o.profile_image_url;
122
123
124
125
126
0 commit comments