|
@@ -645,6 +645,7 @@ async function clickReply(params) {
|
|
postId: state.postId,
|
|
postId: state.postId,
|
|
srcContentId: state.tweetId,
|
|
srcContentId: state.tweetId,
|
|
senderId: state.userId,
|
|
senderId: state.userId,
|
|
|
|
+ redPacketType: 0
|
|
});
|
|
});
|
|
}
|
|
}
|
|
|
|
|
|
@@ -686,6 +687,7 @@ async function clickRepostFacebook(params) {
|
|
postId: state.postId,
|
|
postId: state.postId,
|
|
srcContentId: state.tweetId,
|
|
srcContentId: state.tweetId,
|
|
senderId: state.userId,
|
|
senderId: state.userId,
|
|
|
|
+ redPacketType: 0
|
|
});
|
|
});
|
|
}
|
|
}
|
|
|
|
|
|
@@ -908,7 +910,8 @@ const reportBindTweetSuccess = (params) => {
|
|
Report.reportLog({
|
|
Report.reportLog({
|
|
objectType: Report.objectType.tweetPostBinded,
|
|
objectType: Report.objectType.tweetPostBinded,
|
|
twitterFans: reportParams.twitterFans,
|
|
twitterFans: reportParams.twitterFans,
|
|
- discordFans: reportParams.discordFans
|
|
|
|
|
|
+ discordFans: reportParams.discordFans,
|
|
|
|
+ redPacketType: 0
|
|
});
|
|
});
|
|
}
|
|
}
|
|
}
|
|
}
|
|
@@ -965,7 +968,8 @@ const showSuccessPage = () => {
|
|
srcContentId: state.tweetId,
|
|
srcContentId: state.tweetId,
|
|
senderId: state.userId,
|
|
senderId: state.userId,
|
|
isOldTwitterFans: reportParams.done.follow,
|
|
isOldTwitterFans: reportParams.done.follow,
|
|
- isOldDiscordFans: reportParams.done.join_discord
|
|
|
|
|
|
+ isOldDiscordFans: reportParams.done.join_discord,
|
|
|
|
+ redPacketType: 0
|
|
});
|
|
});
|
|
}
|
|
}
|
|
const showNotOpenPage = () => {
|
|
const showNotOpenPage = () => {
|
|
@@ -995,7 +999,8 @@ const showOpenedPageReport = () => {
|
|
srcContentId: state.tweetId,
|
|
srcContentId: state.tweetId,
|
|
senderId: state.userId,
|
|
senderId: state.userId,
|
|
isOldTwitterFans: state.done.follow,
|
|
isOldTwitterFans: state.done.follow,
|
|
- isOldDiscordFans: state.done.join_discord
|
|
|
|
|
|
+ isOldDiscordFans: state.done.join_discord,
|
|
|
|
+ redPacketType: 0
|
|
});
|
|
});
|
|
}
|
|
}
|
|
|
|
|
|
@@ -1353,6 +1358,7 @@ function handleRedPacket() {
|
|
postId: state.postId,
|
|
postId: state.postId,
|
|
srcContentId: state.tweetId,
|
|
srcContentId: state.tweetId,
|
|
senderId: state.userId,
|
|
senderId: state.userId,
|
|
|
|
+ redPacketType: 0
|
|
});
|
|
});
|
|
}
|
|
}
|
|
|
|
|
|
@@ -1739,6 +1745,7 @@ function onRuntimeMsg() {
|
|
Report.reportLog({
|
|
Report.reportLog({
|
|
objectType: Report.objectType.tweetPostBinded,
|
|
objectType: Report.objectType.tweetPostBinded,
|
|
twitterFans: reportParams.twitterFans,
|
|
twitterFans: reportParams.twitterFans,
|
|
|
|
+ redPacketType: 0
|
|
});
|
|
});
|
|
} else {
|
|
} else {
|
|
if (reportParams.discordFans !== '') {
|
|
if (reportParams.discordFans !== '') {
|
|
@@ -1747,7 +1754,8 @@ function onRuntimeMsg() {
|
|
Report.reportLog({
|
|
Report.reportLog({
|
|
objectType: Report.objectType.tweetPostBinded,
|
|
objectType: Report.objectType.tweetPostBinded,
|
|
twitterFans: reportParams.twitterFans,
|
|
twitterFans: reportParams.twitterFans,
|
|
- discordFans: reportParams.discordFans
|
|
|
|
|
|
+ discordFans: reportParams.discordFans,
|
|
|
|
+ redPacketType: 0
|
|
});
|
|
});
|
|
}
|
|
}
|
|
}
|
|
}
|
|
@@ -1818,6 +1826,7 @@ async function joinDiscord() {
|
|
postId: state.postId,
|
|
postId: state.postId,
|
|
srcContentId: state.tweetId,
|
|
srcContentId: state.tweetId,
|
|
senderId: state.userId,
|
|
senderId: state.userId,
|
|
|
|
+ redPacketType: 0
|
|
});
|
|
});
|
|
|
|
|
|
let url = getInviteUrl();
|
|
let url = getInviteUrl();
|