Slight fix in Session

main
Inga 🏳‍🌈 14 years ago
parent 6dbc8b80b9
commit fda2d88f34
  1. 3
      Common/dataobjects/Session.cs

@ -16,6 +16,9 @@ namespace FLocal.Common.dataobjects {
private string key;
public static SessionKey Parse(string _key) {
if(_key == null) {
throw new FLocalException("SessionKey is null");
}
return new SessionKey { key = _key };
}

Loading…
Cancel
Save