Giter VIP home page Giter VIP logo

Comments (5)

themeteorchef avatar themeteorchef commented on June 23, 2024

Is there any error output in the console/terminal?

from base.

rjmoggach avatar rjmoggach commented on June 23, 2024

MiroHibler/meteor-mailchimp#15

from base.

themeteorchef avatar themeteorchef commented on June 23, 2024

@mogga Reading that, are you calling to the Mailchimp API/package somewhere in your code producing this error? If so, you'll want to make sure you use the check package (also a part of Base) to validate your data. For example:

Meteor.methods({
   myMethodName: function(argumentToCheck){
     // Check your argument against the _expected_ type. For example, if this were a string of text:
    check(argumentToCheck,String);
    // Run your MailChimp code after this. Meteor will stop running the method if ^ check fails, and continue if it succeeds.
   }
});

That may be it (not sure if I've seen a package tussle with AAC yet or not). If you're passing an object over, try check(argumentToCheck,{key: valueType, key: String}); where valueType is equal to the type of value you expect. You can find a list of values to test for here.

I'll keep this open to see if I can help resolve it on my end :)

from base.

themeteorchef avatar themeteorchef commented on June 23, 2024

@mogga any update on if this was the fix or still having issues?

from base.

themeteorchef avatar themeteorchef commented on June 23, 2024

Looks like this was fixed in the package referenced, going to go ahead and close this.

from base.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.