Skip to content

Commit

Permalink
Merge pull request #90 from skieffer/fix-repo-mgr-trust-check
Browse files Browse the repository at this point in the history
c: Bugfix in `RepoManager`
  • Loading branch information
skieffer authored Jun 14, 2024
2 parents 2b7044b + 95dc5a1 commit dcaa435
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion client/src/trees/RepoManager.js
Original file line number Diff line number Diff line change
Expand Up @@ -527,7 +527,7 @@ export class RepoManager {
/* Check whether a repo is marked as being trusted site-wide.
*/
repoIsTrustedSiteWide(repopath, version) {
const repopathv = iseUtil.lv(repopath, "WIP");
const repopathv = iseUtil.lv(repopath, version);
const loaded = this.repoIsLoaded({repopathv});
let item = {};
if (loaded.fs) {
Expand Down

0 comments on commit dcaa435

Please sign in to comment.