Skip to content

Commit 61feaaa

Browse files
Merge pull request #248 from PowershellFrameworkCollective/bugfix-config-safevalue
Fixed default display of config
2 parents 84d4b58 + 012f627 commit 61feaaa

4 files changed

Lines changed: 2 additions & 0 deletions

File tree

PSFramework/bin/PSFramework.dll

0 Bytes
Binary file not shown.

PSFramework/bin/PSFramework.pdb

0 Bytes
Binary file not shown.

PSFramework/changelog.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,7 @@
1212
- Upd: PsfValidateSet now supports localized strings using the `ErrorString` property.
1313
- Upd: PsfValidateScript now supports localized strings using the `ErrorString` property.
1414
- Fix: PsfValidateSet fails on completion scriptblock with whitespace value
15+
- Fix: Get-PSFConfig will show bad value in default table. Correct data still stored (#243)
1516

1617
## 0.10.28.144 : 2018-10-28
1718
- Upd: Module Architecture update

library/PSFramework/Configuration/ConfigurationValue.cs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -41,6 +41,7 @@ public object Value
4141
_PersistedValue = "null";
4242
}
4343
else
44+
PersistedType = ConfigurationValueType.Unknown;
4445
_PersistedValue = null;
4546

4647
_Value = value;

0 commit comments

Comments
 (0)