Skip to content
This repository has been archived by the owner on Aug 12, 2024. It is now read-only.

Commit

Permalink
Shamrock: fix 96 crash
Browse files Browse the repository at this point in the history
  • Loading branch information
ikechan8370 committed Dec 1, 2023
1 parent 007e5fe commit 2c3466b
Show file tree
Hide file tree
Showing 4 changed files with 21 additions and 1 deletion.
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
package com.tencent.qqnt.kernel.nativeinterface;

public class GuildInteractiveNotificationItem {
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
package com.tencent.qqnt.kernel.nativeinterface;

public class GuildNotificationAbstractInfo {
}
Original file line number Diff line number Diff line change
Expand Up @@ -42,6 +42,10 @@ public interface IKernelMsgListener {

void onGroupTransferInfoUpdate(GroupFileListResult groupFileListResult);

void onGuildInteractiveUpdate(GuildInteractiveNotificationItem guildInteractiveNotificationItem);

void onGuildNotificationAbstractUpdate(GuildNotificationAbstractInfo guildNotificationAbstractInfo);

void onHitCsRelatedEmojiResult(DownloadRelateEmojiResultInfo downloadRelateEmojiResultInfo);

void onHitEmojiKeywordResult(HitRelatedEmojiWordsResult hitRelatedEmojiWordsResult);
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -358,7 +358,7 @@ internal object AioListener: IKernelMsgListener {
}

override fun onRichMediaUploadComplete(notifyInfo: FileTransNotifyInfo) {
//LogCenter.log("onRichMediaUploadComplete($notifyInfo)", Level.DEBUG)
LogCenter.log("onRichMediaUploadComplete($notifyInfo)", Level.DEBUG)
RichMediaUploadHandler.notify(notifyInfo)
}

Expand Down Expand Up @@ -398,6 +398,14 @@ internal object AioListener: IKernelMsgListener {
LogCenter.log("onGroupTransferInfoUpdate: " + groupFileListResult.toString(), Level.DEBUG)
}

override fun onGuildInteractiveUpdate(guildInteractiveNotificationItem: GuildInteractiveNotificationItem?) {

}

override fun onGuildNotificationAbstractUpdate(guildNotificationAbstractInfo: GuildNotificationAbstractInfo?) {

}

override fun onHitCsRelatedEmojiResult(downloadRelateEmojiResultInfo: DownloadRelateEmojiResultInfo?) {

}
Expand Down

0 comments on commit 2c3466b

Please sign in to comment.