fixed version explorer issue

Signed-off-by: chcurran <82187351+carlitosan@users.noreply.github.com>
This commit is contained in:
chcurran
2021-11-17 12:17:45 -08:00
committed by Chris Burel
parent 4484b69036
commit f8fdf4b306
6 changed files with 19 additions and 14 deletions
@@ -205,9 +205,9 @@ namespace ScriptCanvasEditor
bool SourceHandle::AnyEquals(const SourceHandle& other) const
{
return m_data == other.m_data
|| m_id == other.m_id
|| m_path == other.m_path;
return m_data && m_data == other.m_data
|| !m_id.IsNull() && m_id == other.m_id
|| !m_path.empty() && m_path == other.m_path;
}
void SourceHandle::Clear()