Skip to content

Commit

Permalink
fix: settings not saving for sources with port
Browse files Browse the repository at this point in the history
  • Loading branch information
Bionus committed Dec 13, 2022
1 parent 700a14a commit 9d7be0d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/lib/src/models/site.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@


Site::Site(QString url, Source *source, Profile *profile)
: Site(url, source->getEngine(), source->getPath().readWritePath(url), profile)
: Site(url, source->getEngine(), source->getPath().readWritePath(QString(url).replace(':', '_')), profile)
{}

Site::Site(QString url, SourceEngine *engine, const ReadWritePath &dir, Profile *profile)
Expand Down

0 comments on commit 9d7be0d

Please sign in to comment.