2013-12-05 Miguel de Dios <miguel.dedios@artica.es>
* src/pandroid_event_viewer/pandorafms/API.java: fixed the offset parameter for the api. git-svn-id: https://svn.code.sf.net/p/pandora/code/trunk@9165 c3f86ba8-e40f-0410-aaad-9ba5e7f4b01f
This commit is contained in:
parent
99eee9837a
commit
2760579ccb
|
@ -1,3 +1,8 @@
|
|||
2013-12-05 Miguel de Dios <miguel.dedios@artica.es>
|
||||
|
||||
* src/pandroid_event_viewer/pandorafms/API.java: fixed the offset
|
||||
parameter for the api.
|
||||
|
||||
2013-12-04 Miguel de Dios <miguel.dedios@artica.es>
|
||||
|
||||
* src/pandroid_event_viewer/pandorafms/EventList.java,
|
||||
|
|
|
@ -298,6 +298,7 @@ public class API {
|
|||
" Status: " + String.valueOf(filterStatus) +
|
||||
" Description: " +
|
||||
" Pagination: " + Integer.toString(20) +
|
||||
" Offset: " + Long.toString(offset) +
|
||||
" Count/Show: " + totalStr +
|
||||
" Group ID: " + Integer.toString(idGroup) +
|
||||
" Tag: " + filterTag
|
||||
|
@ -316,9 +317,9 @@ public class API {
|
|||
filterEventSearch, // The free search in the text event
|
||||
// description.
|
||||
Integer.toString(20), // The pagination of list events
|
||||
Long.toString(0), // The offset of list events
|
||||
Long.toString(offset), // The offset of list events
|
||||
totalStr, // Count or show
|
||||
Integer.toString(idGroup), // Group ID
|
||||
filterTag }); // Tag
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue