Skip to content

Commit

Permalink
FIx an issue with domain support in slk
Browse files Browse the repository at this point in the history
  • Loading branch information
andrewtelnov committed Nov 13, 2023
1 parent 289106c commit 65b8898
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/entries/chunks/model.ts
Original file line number Diff line number Diff line change
Expand Up @@ -63,8 +63,9 @@ function checkPrefix(prefix: string): boolean {
for(let i = 0; i < ds.length; i ++) {
if(hn.indexOf(ds[i]) > -1) return true;
}
return false;
}
return false;
return true;
}

export { settings, ISurveyEnvironment } from "../../settings";
Expand Down

0 comments on commit 65b8898

Please sign in to comment.