Merge branch 'master' into isitmyaddressdesktop

This commit is contained in:
marcosrdz 2020-12-19 15:58:18 -05:00
commit 13e44c203c
2 changed files with 6 additions and 4 deletions

6
App.js
View File

@ -43,7 +43,7 @@ const App = () => {
const appState = useRef(AppState.currentState); const appState = useRef(AppState.currentState);
const [isClipboardContentModalVisible, setIsClipboardContentModalVisible] = useState(false); const [isClipboardContentModalVisible, setIsClipboardContentModalVisible] = useState(false);
const [clipboardContentType, setClipboardContentType] = useState(); const [clipboardContentType, setClipboardContentType] = useState();
const [clipboardContent, setClipboardContent] = useState(''); const clipboardContent = useRef();
const colorScheme = useColorScheme(); const colorScheme = useColorScheme();
const stylesHook = StyleSheet.create({ const stylesHook = StyleSheet.create({
modalContent: { modalContent: {
@ -217,7 +217,7 @@ const App = () => {
const isBothBitcoinAndLightning = DeeplinkSchemaMatch.isBothBitcoinAndLightning(clipboard); const isBothBitcoinAndLightning = DeeplinkSchemaMatch.isBothBitcoinAndLightning(clipboard);
if ( if (
!isAddressFromStoredWallet && !isAddressFromStoredWallet &&
clipboardContent !== clipboard && clipboardContent.current !== clipboard &&
(isBitcoinAddress || isLightningInvoice || isLNURL || isBothBitcoinAndLightning) (isBitcoinAddress || isLightningInvoice || isLNURL || isBothBitcoinAndLightning)
) { ) {
if (isBitcoinAddress) { if (isBitcoinAddress) {
@ -229,7 +229,7 @@ const App = () => {
} }
setIsClipboardContentModalVisible(true); setIsClipboardContentModalVisible(true);
} }
setClipboardContent(clipboard); clipboardContent.current = clipboard;
} }
if (nextAppState) { if (nextAppState) {
appState.current = nextAppState; appState.current = nextAppState;

View File

@ -232,7 +232,8 @@
"about_review": "برای ما یک بررسی بگذارید", "about_review": "برای ما یک بررسی بگذارید",
"about_selftest": "اجرای خودآزمایی", "about_selftest": "اجرای خودآزمایی",
"about_sm_github": "گیت‌هاب", "about_sm_github": "گیت‌هاب",
"about_sm_telegram": "گروه تلگرام", "about_sm_discord": "سرور دیسکورد",
"about_sm_telegram": "کانال تلگرام",
"about_sm_twitter": "ما را در توئیتر دنبال کنید", "about_sm_twitter": "ما را در توئیتر دنبال کنید",
"advanced_options": "گزینه‌های پیشرفته", "advanced_options": "گزینه‌های پیشرفته",
"currency": "واحد پول", "currency": "واحد پول",
@ -402,6 +403,7 @@
"list_tryagain": "دوباره امتحان کنید", "list_tryagain": "دوباره امتحان کنید",
"looks_like_bip38": "این به کلید خصوصی محافظت‌شده با گذرواژه (BIP38) شباهت دارد.", "looks_like_bip38": "این به کلید خصوصی محافظت‌شده با گذرواژه (BIP38) شباهت دارد.",
"reorder_title": "بازچینی کیف پول‌ها", "reorder_title": "بازچینی کیف پول‌ها",
"please_continue_scanning": "لطفاً به اسکن‌کردن ادامه دهید",
"select_no_bitcoin": "هیچ کیف پول بیت‌کوینی درحال‌حاضر دردسترس نیست.", "select_no_bitcoin": "هیچ کیف پول بیت‌کوینی درحال‌حاضر دردسترس نیست.",
"select_no_bitcoin_exp": "یک کیف پول بیت‌کوین برای پرکردن کیف پول‌های لایتنینگ نیاز است. لطفاً یکی بسازید یا وارد کنید.", "select_no_bitcoin_exp": "یک کیف پول بیت‌کوین برای پرکردن کیف پول‌های لایتنینگ نیاز است. لطفاً یکی بسازید یا وارد کنید.",
"select_wallet": "انتخاب کیف پول", "select_wallet": "انتخاب کیف پول",