Small fixes and translation updates

This commit is contained in:
crschnick
2025-02-13 12:00:43 +00:00
parent 9e4a205d9a
commit d76a799969
17 changed files with 81 additions and 75 deletions
@@ -68,7 +68,7 @@ public interface ShellInitCommand {
@Override
public boolean canPotentiallyRunInDialect(ShellDialect dialect) {
return this.dialect.isCompatibleTo(dialect);
return this.dialect == null || this.dialect.isCompatibleTo(dialect);
}
@Override