Skip to content

Commit

Permalink
fix: [Information type acquisition error]
Browse files Browse the repository at this point in the history
Modify the value types in the processing mapping to facilitate future requirements and access to stored values

Log: Information type acquisition error
Bug: https://pms.uniontech.com/bug-view-263539.html
  • Loading branch information
pppanghu77 committed Jul 10, 2024
1 parent 4e23c2d commit de8b498
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/dfm-mount/private/dnetworkmounter.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -103,7 +103,7 @@ QList<QVariantMap> DNetworkMounter::loginPasswd(const QString &address)
auto info = static_cast<QVariantMap *>(vm);
if (!info)
return;
QVariant vVariant = QVariant::fromValue((void *)v);
QVariant vVariant = QVariant::fromValue((char *)v);
info->insert(static_cast<char *>(k), vVariant);
qInfo() << "found saved login info:" << *info;
},
Expand Down

0 comments on commit de8b498

Please sign in to comment.