temp=raidLine.right(22);
raidLine.chop(22);
removePrecedingSpace(temp);
raidEntry.creationTime=QDateTime::fromString(temp,"dd.MM.yyyy HH:mm:ss");
printf("Added creation time '%s' => '%s'\n", temp.toStdString().c_str(), raidEntry.creationTime.toString("yyyy-MM-dd").toStdString().c_str());
Added creation time '0 15.06.2026 14:49:1' => ''
In rds_raid.cpp's
rdsRaid::parseOutputDirectoryI added a printf to debug likeIt shows
I think it's off by one because the simulator's mode=1 has
printf("\n")instead of"\r\n"which is expected by parseOutputDirectory'sraidLine.chop(2).It's not a problem on windows because the compiler automatically inserts the CR?