Fixed AutoSavedStore's deletion of data when table was using composite keys.
This commit is contained in:
@@ -4,7 +4,7 @@ using HermesSocketServer.Store.Internal;
|
||||
|
||||
namespace HermesSocketServer.Store
|
||||
{
|
||||
public class ChatterStore : AutoSavedStore<string, ChatterVoice>
|
||||
public class ChatterStore : ComplexAutoSavedStore<string, ChatterVoice>
|
||||
{
|
||||
private readonly string _userId;
|
||||
private readonly Database _database;
|
||||
@@ -43,9 +43,5 @@ namespace HermesSocketServer.Store
|
||||
protected override void OnInitialModify(string key, ChatterVoice value)
|
||||
{
|
||||
}
|
||||
|
||||
protected override void OnInitialRemove(string key)
|
||||
{
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user