There was an error while loading. Please reload this page.
2 parents 1e107f9 + 9873f92 commit a44c551Copy full SHA for a44c551
src/scraper.js
@@ -85,7 +85,7 @@ function processCompanyPage(item, result) {
85
industries[item.entityUrn] = item.localizedName;
86
else if (item.$type == 'com.linkedin.voyager.common.FollowingInfo')
87
followingItems[item.entityUrn] = item.followerCount;
88
-else if (item.$type == 'com.linkedin.voyager.organization.Company' && item.tagline) {
+else if (item.$type == 'com.linkedin.voyager.organization.Company' && (item.tagline || item.tagline === null) {
89
result.name = item.name;
90
result.tagline = item.tagline;
91
result.description = item.description;
0 commit comments