Skip to content

Commit

Permalink
fixed issue 127
Browse files Browse the repository at this point in the history
  • Loading branch information
konradrenner committed May 6, 2016
1 parent 1b8a7a1 commit ae7e40f
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 2 deletions.
4 changes: 2 additions & 2 deletions app/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,8 @@ android {
applicationId "org.kore.kolabnotes.android"
minSdkVersion 16
targetSdkVersion 23
versionCode 72
versionName "2.0.7"
versionCode 73
versionName "2.0.8"

//Running test
testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -1215,6 +1215,11 @@ private boolean checkModificationPermissions(Notebook book) {
* @param html
*/
String repairImages(String html){
//issue 127
if(!Utils.getUseRicheditor(activity)){
return html;
}

if(html == null || html.trim().length() == 0){
return null;
}
Expand Down

0 comments on commit ae7e40f

Please sign in to comment.