Skip to content

Commit cb8fa87

Browse files
committed
Convert %27 to "/"
1 parent 21dd406 commit cb8fa87

File tree

1 file changed

+1
-0
lines changed

1 file changed

+1
-0
lines changed

src/SignalSocket.cpp

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -33,6 +33,7 @@ SignalSocket::SignalSocket(const InterfaceContext& context, int port, Config con
3333
match = replaceAll(match, "%27", "'");
3434
match = replaceAll(match, "%2C", ",");
3535
match = replaceAll(match, "%3D", "=");
36+
match = replaceAll(match, "%2F", "/");
3637
PLOGD << "match : " << match;
3738
try {
3839
conn2slot_[conn_hdl] = dbus_connection_->addMatch(

0 commit comments

Comments
 (0)