diff --git a/src/raspberrypi/rascsi.cpp b/src/raspberrypi/rascsi.cpp index da90e030..4ab4f1a5 100644 --- a/src/raspberrypi/rascsi.cpp +++ b/src/raspberrypi/rascsi.cpp @@ -858,7 +858,8 @@ bool ProcessCmd(const CommandContext& context, const PbDeviceDefinition& pb_devi s << ", "; } isFirst = false; - s << "'" << param.first << "=" << param.second << "'"; + string value = param.first != "token" ? param.second : "???"; + s << "'" << param.first << "=" << value << "'"; } }