Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit b763045d authored by Amit Kumar's avatar Amit Kumar Committed by Romain Hunault
Browse files

Fix #151 - NPE when clicking on shortcut icons in Nougat

parent f34b6b72
Loading
Loading
Loading
Loading
Loading
+1 −1
Original line number Original line Diff line number Diff line
@@ -4,7 +4,7 @@ apply plugin: 'io.fabric'
// Manifest version information!
// Manifest version information!
def versionMajor = 1
def versionMajor = 1
def versionMinor = 2
def versionMinor = 2
def versionPatch = 1
def versionPatch = 2


android {
android {
    compileSdkVersion rootProject.ext.compileSdkVersion
    compileSdkVersion rootProject.ext.compileSdkVersion
+1 −0
Original line number Original line Diff line number Diff line
@@ -382,6 +382,7 @@ public class AppProvider {
        shortcutItem.container = databaseItem.container;
        shortcutItem.container = databaseItem.container;
        shortcutItem.screenId = databaseItem.screenId;
        shortcutItem.screenId = databaseItem.screenId;
        shortcutItem.cell = databaseItem.cell;
        shortcutItem.cell = databaseItem.cell;
        shortcutItem.user = new UserHandle();
        return shortcutItem;
        return shortcutItem;
    }
    }