adding screenshots for readme | adding changelog | adding error message if scrapingant was not configured when using immoscout

This commit is contained in:
orangecoding
2021-05-13 17:22:59 +02:00
parent 2d110e7517
commit 793066ef94
5 changed files with 38 additions and 258 deletions

View File

@@ -83,10 +83,11 @@ export default function JobMutator() {
});
history.push('/jobs');
} catch (Exception) {
console.error(Exception);
console.error(Exception.json.message);
ctx.showToast({
title: 'Error',
message: Exception,
message: Exception.json != null ? Exception.json.message : Exception,
delay: 35000,
backgroundColor: '#db2828',
color: '#fff',