Skip to content

Commit 75f6dff

Browse files
author
Franco Bugnano
committed
Small fix in print()
1 parent 2404ba9 commit 75f6dff

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

lib/src/chatbox.dart

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -393,7 +393,7 @@ class ChatBoxState extends State<ChatBox> {
393393
final js = 'await Talk.ready;';
394394

395395
if (kDebugMode) {
396-
print('📗 chatbox._onLoadStop: $js');
396+
print('📗 chatbox callAsyncJavaScript: $js');
397397
}
398398

399399
await controller.callAsyncJavaScript(functionBody: js);

lib/src/conversationlist.dart

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -224,7 +224,7 @@ class ConversationListState extends State<ConversationList> {
224224
final js = 'await Talk.ready;';
225225

226226
if (kDebugMode) {
227-
print('📗 conversationlist._onLoadStop: $js');
227+
print('📗 conversationlist callAsyncJavaScript: $js');
228228
}
229229

230230
await controller.callAsyncJavaScript(functionBody: js);

0 commit comments

Comments
 (0)