(purple) Typo fix

This commit is contained in:
Jaidyn Ann 2021-07-02 10:24:34 -05:00
parent b5b24939ea
commit 58e3d99af5

View File

@ -80,7 +80,7 @@ PurpleApp::MessageReceived(BMessage* msg)
{ {
int64 thread_id; int64 thread_id;
if (msg->FindInt64("thread_id", &thread_id) != B_OK) return; if (msg->FindInt64("thread_id", &thread_id) != B_OK) return;
int32 index = msg->FindInt32("index", 0); int32 index = msg->GetInt32("index", 0);
ProtocolInfo* info = fProtocols.ItemAt(index); ProtocolInfo* info = fProtocols.ItemAt(index);
BMessage protocolInfo = info->settingsTemplate; BMessage protocolInfo = info->settingsTemplate;