Your ROOT_URL in app.ini is https://bdgit.educoder.net/ but you are visiting http://bdgit.educoder.net/p9vt2p3ui/AdvancedMiNotes/commit/fd8911c34df72c504780ea374450366315f23bf4?style=unified&whitespace=ignore-change
You should set ROOT_URL correctly, otherwise the web may not work correctly.
1 changed files with
7 additions and
4 deletions
@ -26,7 +26,10 @@ import net.micode.notes.data.Notes.NoteColumns;
import net.micode.notes.tool.DataUtils ;
import net.micode.notes.ui.activities.NoteEditActivity ;
/ * *
* 便 签 列 表 子 项
* 存 储 许 多 便 签 有 关 的 数 据
* /
public class NoteItemData {
public static final String [ ] PROJECTION = new String [ ] {
NoteColumns . ID ,
@ -82,7 +85,7 @@ public class NoteItemData {
mAlertDate = cursor . getLong ( ALERTED_DATE_COLUMN ) ;
mBgColorId = cursor . getInt ( BG_COLOR_ID_COLUMN ) ;
mCreatedDate = cursor . getLong ( CREATED_DATE_COLUMN ) ;
mHasAttachment = ( cursor . getInt ( HAS_ATTACHMENT_COLUMN ) > 0 ) ? true : false ;
mHasAttachment = cursor . getInt ( HAS_ATTACHMENT_COLUMN ) > 0 ;
mModifiedDate = cursor . getLong ( MODIFIED_DATE_COLUMN ) ;
mNotesCount = cursor . getInt ( NOTES_COUNT_COLUMN ) ;
mParentId = cursor . getLong ( PARENT_ID_COLUMN ) ;
@ -111,8 +114,8 @@ public class NoteItemData {
}
private void checkPostion ( Cursor cursor ) {
mIsLastItem = cursor . isLast ( ) ? true : false ;
mIsFirstItem = cursor . isFirst ( ) ? true : false ;
mIsLastItem = cursor . isLast ( ) ;
mIsFirstItem = cursor . isFirst ( ) ;
mIsOnlyOneItem = ( cursor . getCount ( ) = = 1 ) ;
mIsMultiNotesFollowingFolder = false ;
mIsOneNoteFollowingFolder = false ;