Skip to content

Commit 457cef9

Browse files
mihaylov87alexmucde
authored andcommitted
Fix ignoring of plugin return codes in qdltplugin
Signed-off-by: Yordan Mihaylov <[email protected]>
1 parent 455c467 commit 457cef9

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

qdlt/qdltplugin.cpp

+1-2
Original file line numberDiff line numberDiff line change
@@ -103,8 +103,7 @@ bool QDltPlugin::decodeMsg(QDltMsg &msg, int triggeredByUser)
103103
{
104104
if(mode != ModeDisable && plugindecoderinterface && plugindecoderinterface->isMsg(msg,triggeredByUser))
105105
{
106-
plugindecoderinterface->decodeMsg(msg,triggeredByUser);
107-
return true;
106+
return plugindecoderinterface->decodeMsg(msg,triggeredByUser);
108107
}
109108
return false;
110109
}

0 commit comments

Comments
 (0)