We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b249afd commit 77474a6Copy full SHA for 77474a6
1 file changed
app/src/main/java/com/sameerasw/airsync/utils/ClipboardSyncManager.kt
@@ -172,15 +172,7 @@ object ClipboardSyncManager {
172
} catch (_: Exception) {
173
true
174
}
175
- // Only for Plus and while connected
176
- val isConnected = WebSocketUtil.isConnected()
177
- val last = try {
178
- dataStoreManager.getLastConnectedDevice().first()
179
- } catch (_: Exception) {
180
- null
181
- }
182
- val isPlus = last?.isPlus == true
183
- if (continueEnabled && isConnected && isPlus && isLinkOnly(text)) {
+ if (continueEnabled && isConnected && isLinkOnly(text)) {
184
NotificationUtil.showContinueBrowsingLink(context, text.trim(), keepPrevious)
185
186
0 commit comments