mikedld / bt-migrate

Torrent state migration tool
GNU General Public License v3.0
89 stars 15 forks source link

Several issues #25

Open razaqq opened 1 year ago

razaqq commented 1 year ago

There is a whole range of bugs and missing things, ill try to summarize them here in one

fs::path MigrationTransaction::GetTemporaryPath(fs::path const& path) const { fs::path result = path; result += ".tmp." + ReplaceAll(m_transactionId, ":", "-"); return result; }

fs::path MigrationTransaction::GetBackupPath(fs::path const& path) const { fs::path result = path; result += ".bak." + ReplaceAll(m_transactionId, ":", "-"); return result; }

mikedld commented 1 year ago

I appreciate your interest in the project, but as before please prefer multiple targeted PRs instead of a single big one with all the changes ;)