mirror of
https://github.com/ouchadam/small-talk.git
synced 2025-01-06 15:20:45 +01:00
Merge pull request #63 from ouchadam/force-working-synapse-version
Force working synapse version
This commit is contained in:
commit
02c2e6064e
2
.github/workflows/test.yml
vendored
2
.github/workflows/test.yml
vendored
@ -25,7 +25,7 @@ jobs:
|
||||
|
||||
- name: Create pip requirements
|
||||
run: |
|
||||
echo "matrix-synapse" > requirements.txt
|
||||
echo "matrix-synapse==v1.60.0" > requirements.txt
|
||||
|
||||
- name: Set up Python 3.8
|
||||
uses: actions/setup-python@v2
|
||||
|
@ -70,6 +70,10 @@ class NotificationFactory(
|
||||
smallIcon = R.drawable.ic_notification_small_icon,
|
||||
contentIntent = openAppIntent,
|
||||
groupId = GROUP_ID,
|
||||
groupAlertBehavior = deviceMeta.whenPOrHigher(
|
||||
block = { Notification.GROUP_ALERT_SUMMARY },
|
||||
fallback = { null }
|
||||
),
|
||||
isGroupSummary = true,
|
||||
)
|
||||
}
|
||||
|
@ -484,8 +484,8 @@ internal sealed class ApiTimelineEvent {
|
||||
|
||||
@Serializable
|
||||
internal data class Info(
|
||||
@SerialName("h") val height: Int,
|
||||
@SerialName("w") val width: Int,
|
||||
@SerialName("h") val height: Int? = null,
|
||||
@SerialName("w") val width: Int? = null,
|
||||
)
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user