From c17ee116366e682c0119f12e6db421894bfe6375 Mon Sep 17 00:00:00 2001 From: "ladislav.seps" Date: Tue, 14 Oct 2014 12:51:07 +0200 Subject: [PATCH] speaker with dbtype file should not have automaticaly generated dbid --- Transcription/Speaker.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Transcription/Speaker.cs b/Transcription/Speaker.cs index 1339174..9095dc9 100644 --- a/Transcription/Speaker.cs +++ b/Transcription/Speaker.cs @@ -492,7 +492,7 @@ public string DBID { get { - if (_dbid == null) + if (_dbid == null && DBType!=DBType.File) { _dbid = Guid.NewGuid().ToString(); }