Merge branch 'master' into feat/room-sqlcipher

This commit is contained in:
Amab 2022-05-23 18:15:44 +02:00
commit ded60c223c
5 changed files with 15 additions and 11 deletions

View File

@ -20,16 +20,10 @@ A clear and concise description of what you expected to happen.
**Screenshots** **Screenshots**
If applicable, add screenshots to help explain your problem. If applicable, add screenshots to help explain your problem.
**Desktop (please complete the following information):**
- OS: [e.g. iOS]
- Browser [e.g. chrome, safari]
- Version [e.g. 22]
**Smartphone (please complete the following information):** **Smartphone (please complete the following information):**
- Device: [e.g. iPhone6] - Device: [e.g. Google Pixel 2 XL]
- OS: [e.g. iOS8.1] - OS: [e.g. Android 12 (S)]
- Browser [e.g. stock browser, safari] - Version: [e.g. 1.5.8]
- Version [e.g. 22]
**Additional context** **Additional context**
Add any other context about the problem here. Add any other context about the problem here.

View File

@ -471,7 +471,7 @@ public class Notifications extends Module implements
pendingIntent = PendingIntent.getActivity(getApplicationContext(), pendingIntent = PendingIntent.getActivity(getApplicationContext(),
0, 0,
notificationIntent, notificationIntent,
PendingIntent.FLAG_UPDATE_CURRENT | PendingIntent.FLAG_ONE_SHOT); PendingIntent.FLAG_UPDATE_CURRENT | PendingIntent.FLAG_ONE_SHOT | PendingIntent.FLAG_IMMUTABLE);
if (!SyncUtils.isSyncAutomatically(getApplicationContext())) { if (!SyncUtils.isSyncAutomatically(getApplicationContext())) {
if (notifCount > 0) { if (notifCount > 0) {

View File

@ -425,7 +425,7 @@ public class NotificationsSyncAdapterService extends Service {
pendingIntent = PendingIntent.getActivity(context, pendingIntent = PendingIntent.getActivity(context,
0, 0,
notificationIntent, notificationIntent,
PendingIntent.FLAG_UPDATE_CURRENT | PendingIntent.FLAG_ONE_SHOT); PendingIntent.FLAG_UPDATE_CURRENT | PendingIntent.FLAG_ONE_SHOT | PendingIntent.FLAG_IMMUTABLE);
//Notify synchronization start //Notify synchronization start
Intent startIntent = new Intent(); Intent startIntent = new Intent();

View File

@ -23,6 +23,11 @@
<li type="disc">Añadido módulo para localización en interiores</li> <li type="disc">Añadido módulo para localización en interiores</li>
</ul>--> </ul>-->
<h4>1.5.8 (2022-05-23)</h4>
<ul>
<li type="disc">Corregida descarga de notificaciones en Android 12 (S)</li>
</ul>
<h4>1.5.7 (2020-12-19)</h4> <h4>1.5.7 (2020-12-19)</h4>
<ul> <ul>
<li type="disc">Corregida descarga de archivos en Android R</li> <li type="disc">Corregida descarga de archivos en Android R</li>

View File

@ -23,6 +23,11 @@
<li type="disc">Added indoor location module</li> <li type="disc">Added indoor location module</li>
</ul>--> </ul>-->
<h4>1.5.8 (2022-05-23)</h4>
<ul>
<li type="disc">Fixed notifications downloads on Android 12 (S)</li>
</ul>
<h4>1.5.7 (2020-12-19)</h4> <h4>1.5.7 (2020-12-19)</h4>
<ul> <ul>
<li type="disc">Fixed file downloads on Android R</li> <li type="disc">Fixed file downloads on Android R</li>