Skip to content

Commit fa49749

Browse files
authored
FIX: Fix the Twitter Unfollowers API Node script (#1329)
1 parent a131aa2 commit fa49749

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

JavaScript/Twitter_Unfollowers/Twitter_Unfollowers.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -73,7 +73,7 @@ const init = async () => {
7373
dbData = (dbData === "" || dbData.length == 0) ? "{}" : dbData;
7474
dbData = JSON.parse(dbData);
7575

76-
if (Object.prototype.hasOwnProperty.call(dbData, "user.name")) {
76+
if (Object.prototype.hasOwnProperty.call(dbData, user.name)) {
7777
// display basic info
7878
displayUser(user);
7979

0 commit comments

Comments
 (0)