Skip to content

Commit

Permalink
Merge branch 'ienumerable-fix'
Browse files Browse the repository at this point in the history
  • Loading branch information
aspriddell committed Sep 10, 2021
2 parents 5111905 + 8426d27 commit 1818917
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion DragonFruit.Common.Data/Serializers/SerializerResolver.cs
Original file line number Diff line number Diff line change
Expand Up @@ -81,7 +81,7 @@ public static void Unregister<T>(DataDirection direction = DataDirection.All)
/// </summary>
public ISerializer Resolve(Type objectType, DataDirection direction)
{
if (objectType.IsClass)
if (!objectType.IsClass)
{
// at this point in time, we only support non-generic class
// this is because this isn't designed to filter generic types
Expand Down

0 comments on commit 1818917

Please sign in to comment.