Commit c220e771 by german

Arreglado bug por el cual si entrabas como estudiante la primera vez que abrias…

Arreglado bug por el cual si entrabas como estudiante la primera vez que abrias la app petaba y quedaba en bucle infinito el login
parent c6ea746f
......@@ -218,7 +218,7 @@ public class PCBDBHelper extends SQLiteOpenHelper {
*/
public Vocabulary getStudentVocabulary(Vocabulary vocabulary ) throws JSONException {
int id_stu = this.currentUser.get_id_stu();
int id_scene = getActiveSceneForStudent(id_stu);
int id_scene = this.currentUser.get_active_scene();
SQLiteDatabase db = this.getReadableDatabase();
......@@ -253,7 +253,7 @@ public class PCBDBHelper extends SQLiteOpenHelper {
Log.i(LOG_TAG,"inserting "+picto.get_id()+":"+picto.get_translation()+":"+picto.get_json_attrs()+"-id_sce: "+PCBcontext.getPcbdb().getCurrentUser().get_active_scene());
values.put("id_picto", picto.get_id());
values.put("id_scene", getActiveSceneForStudent(id_stu));
values.put("id_scene", this.currentUser.get_active_scene());
values.put("id_stupicto", picto.get_stupicto_id());
values.put("url", picto.get_url());
values.put("translation",picto.get_translation());
......@@ -279,7 +279,7 @@ public class PCBDBHelper extends SQLiteOpenHelper {
values.put("id_stu", id_stu);
values.put("id_picto", picto.get_id());
//TODO: Añadir aqui el id de escena activa para el estudiante
values.put("id_scene",PCBcontext.getPcbdb().getCurrentUser().get_active_scene());
values.put("id_scene",this.currentUser.get_active_scene());
values.put("id_stupicto",picto.get_stupicto_id());
values.put("url", picto.get_url());
values.put("translation",picto.get_translation());
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or sign in to comment