Additional check for ShortTag conversion

This commit is contained in:
Virgile Bello 2016-08-25 18:22:48 +09:00
Родитель f21601208c
Коммит 0878a9fa57
1 изменённых файлов: 1 добавлений и 1 удалений

Просмотреть файл

@ -195,7 +195,7 @@ namespace SharpYaml.Serialization
// Get the default schema type if there is any
var shortTag = schema.ShortenTag(tag);
Type type;
if (shortTag != tag)
if (shortTag != tag || shortTag.StartsWith("!!"))
{
type = schema.GetTypeForDefaultTag(shortTag);
if (type != null)