summaryrefslogtreecommitdiff
path: root/Aktywator/ParyTournament.cs
diff options
context:
space:
mode:
Diffstat (limited to 'Aktywator/ParyTournament.cs')
-rw-r--r--Aktywator/ParyTournament.cs4
1 files changed, 2 insertions, 2 deletions
diff --git a/Aktywator/ParyTournament.cs b/Aktywator/ParyTournament.cs
index 9a592d7..f467119 100644
--- a/Aktywator/ParyTournament.cs
+++ b/Aktywator/ParyTournament.cs
@@ -39,13 +39,13 @@ namespace Aktywator
{
pairs.Add(pairNo, new List<string>());
}
- pairs[pairNo].Add(dbData.IsDBNull(1) ? "" : dbData.GetString(1));
+ pairs[pairNo].Add(dbData.IsDBNull(1) ? " " : dbData.GetString(1));
}
foreach (KeyValuePair<int, List<string>> pair in pairs)
{
while (pair.Value.Count < 2)
{
- pair.Value.Add("");
+ pair.Value.Add(" ");
}
}
dbData.Close();