1
0
mirror of https://github.com/moparisthebest/Yaaic synced 2024-11-22 17:02:21 -05:00

Bugfix: Database: Add channels to channel table and not server table ;)

This commit is contained in:
Sebastian Kaspari 2010-04-25 11:15:59 +02:00
parent ddc96f75b3
commit b49015a398

View File

@ -184,7 +184,7 @@ public class Database extends SQLiteOpenHelper
values.put(ChannelConstants.PASSWORD, password);
values.put(ChannelConstants.SERVER, serverId);
this.getWritableDatabase().insert(ServerConstants.TABLE_NAME, null, values);
this.getWritableDatabase().insert(ChannelConstants.TABLE_NAME, null, values);
}
/**