From 70c2fb4703f99659882ddcbdfce7f08c2f9c8097 Mon Sep 17 00:00:00 2001 From: Angel Luis Marin Date: Tue, 9 Feb 2021 08:49:29 +0100 Subject: [PATCH] fix: get javaType in Messaging.java when available (#88) Co-authored-by: Angel Luis Marin Soler --- filters/all.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/filters/all.js b/filters/all.js index db7dd3e1..bd44f59e 100644 --- a/filters/all.js +++ b/filters/all.js @@ -688,7 +688,7 @@ function getTopicInfo(channelName, channel) { if (type) { //console.log("It's a type: " + type); - const javaType = typeMap.get(type); + const javaType = type.javaType || typeMap.get(type); if (!javaType) throw new Error(`topicInfo filter: type not found in typeMap: ${ type}`); param.type = javaType; const printfArg = type.printFormat;